thanks Darko, when I go to Cpanel and drill down to the file containing the code I find two instances of that the_post_thumbnial_caption() in the code like this below. Should I simple change the two references in this file as you suggest?
//function to use featured image on post
add_action(‘thesis_hook_before_headline’,’nsefeatimg’);
function the_post_thumbnail_caption() {
global $post;
$thumbnail_id = get_post_thumbnail_id($post->ID);
$thumbnail_image = get_posts(array(‘p’ => $thumbnail_id, ‘post_type’ => ‘attachment’));
if ($thumbnail_image && isset($thumbnail_image[0])) {
echo ‘<span>’.$thumbnail_image[0]->post_excerpt.'</span>’;
}
}
function nsefeatimg(){
if (!( ‘vinterviews’ == get_post_type() || ‘vsessions’ == get_post_type() || is_page())){
echo ‘<div class=”nsefeatimg left”>’;
the_post_thumbnail( ‘medium’);
echo ‘<p class=”wp-caption-text”>’;
the_post_thumbnail_caption();
echo ‘</p></div>’;