@ Ray
RE: Re the image – I would like to NOT display the title when hovered as it shows link text and there is no link for the image
There is no easy way to remove the hover text as that is handled by the browser. You can try hooking into a couple filters to empty the text. Not sure what the browser will no. Here’s the code:
add_filter( 'cn_photo_alt', 'cn_photo_alt_title' );
add_filter( 'cn_photo_title', 'cn_photo_alt_title' );
function cn_photo_alt_title( $title ) {
return '';
}
RE: (2) Re the H3 Title – I would like this to NOT be a link, just a title as again there is nowwhere that it needs to link to
Navigate to the Connections : Settings admin page and click the Advanced tab. You can disable the Name permalink option. This will remove the link from the entry name (H3). You might be able to add link=false to the shortcode to disable it on a per shortcode basis. No promises though as I can not remember off hand if the cMap template supports it or not since it is not an officially support option.
Hope this helps!
