Home › Forums › MapPress Support › No tooltips in mashups › Reply To: No tooltips in mashups
November 24, 2012 at 8:00 pm
#10895
Hi Chris,
I did have the tooltips setting turned on in the MapPress settings screen already. I added the tooltips=”true” to the template tag shortcode as below. It’s all working now – many thanks.
Jon
function archive_page_mappress() {
if ( is_post_type_archive( 'local_contact' ) || is_tax( 'local_contact_category' ) ) {
echo do_shortcode('[mashup tooltips="true"]');
}
}
add_filter( 'genesis_loop', 'archive_page_mappress', 5 );