10/20/2015 at 11:18 am
#351122
Keymaster
@ Rob
Since that is the page title being output by the theme… that is going to be fairly difficult to address. The best/only solution I can think of is this:
Install the Code Snippets plugin.
Add a new code snippet with the following code:
add_filter( 'the_title', 'cn_single_entry_page_title', 10, 2 );
function cn_single_entry_page_title( $title, $id = 0 ) {
if ( get_query_var( 'cn-entry-slug' ) ) {
$title = '';
}
return $title;
}
Save and activate the new code snippet.
Hope that helps!
