Magaling Theme Thumbnail Issue
-
I swear I’ve followed all instructions to a T. I used this reference: https://www.paddsolutions.com/wordpress-theme-magaling/
But the thumbnail on each post is not coming up. Also, here is my index.php code where the magic should be happening:
<?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/magaling/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'; } ?>
My site is johnmayermusic.net if you want to inspect it with firebug or something. I would really appreciate some help on this. Thanks!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Magaling Theme Thumbnail Issue’ is closed to new replies.