09/04/2014 at 1:37 pm
#302746
Keymaster
@ Oliver
Nope, that hover text has always been there … unless you’ve updated from a much older version.
Here’s how you remove the mouseovers.
Install the Code Snippets plugin.
Add a new snippet with the following code:
add_filter( 'cn_photo_title', 'cn_clear_mouseover' );
add_filter( 'cn_logo_title', 'cn_clear_mouseover' );
function cn_clear_mouseover( $title ) {
return '';
}
Save and activate the new snippet.