wp-theme thats using tt-scripts to generate a thumbed picture for every new post. I followed the directions that came with the theme, and searched all over for a fix but its still not working. Anyone got any ideas? Heres the section of the index.php where the function is supposed to do its thing.
Code:
<div class="post indexpost" id="post-<?php the_ID(); ?>">
<?php
$customfields = get_post_custom();
$scrp = get_bloginfo('wpurl') . '/tt-scripts/timthumb.php?';
if (empty($customfields['paddimage'][0])) {
$imgpath = $scrp . 'src=' . get_bloginfo('wpurl') . '/wp-content/themes/malawak/images/thumbnail.png' . '&w=83&h=83&zc=1';
} else {
$imgpath = $scrp . 'src=' . get_bloginfo('wpurl') . $customfields['paddimage'][0] . '&w=83&h=83&zc=1';
}
?>
tt-scripts is located in the wp root folder like the directions said, the permissions are correct. "paddimage [0]" is the actual picture i guess, had to make a custome field and apply it to each post then upload a pic. Any help is appreciated.