Hi,
You can remove the hyperlink from the the title in the single post manually .Go to Wordpress folder -> wp-content -> themes -> content.php -> Find line no 45 -> Remove this code -> if(get_post_meta($postid,'ttr_post_link_enable_checkbox',true)!= 'false'):?>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'TemplateToaster' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php endif; ?><?php the_title(); ?></a>
-> Add this given code ->
if(is_single($postid) )
{
the_title();
}
elseif(is_blog) {
if(get_post_meta($postid,'ttr_post_link_enable_checkbox',true)!= 'false'):?>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'TemplateToaster' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php endif; ?><?php the_title(); ?></a>
<?php
}
?>