Hi,
I edit single.php as mentioned below:
$thumb_image = get_post_meta($post->ID, 'sf_thumbnail_image', true);
if (!$thumb_image) {
$thumb_image = get_post_thumbnail_id();
}
TO
$thumb_image = get_post_thumbnail_id();
if (!$thumb_image) {
$thumb_image = get_post_meta($post->ID, 'sf_thumbnail_image', true);
}
Thanks