Is there any way to turn off the tool tips that show up on flip box in icon grid?
Thx -B
Hey brentd99,
Thank you for the image, on my localhost the demo flip-box didn’t show a tooltip, so it must be created slightly different than yours.
We have a couple of scripts that can remove this, so please try this one by adding this code to the end of your functions.php file in Appearance > Editor:
function custom_script(){
?>
<script>
jQuery(window).load(function(){
jQuery('a').removeAttr('title');
jQuery('img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'custom_script');
If this doesn’t help please include the url to the page in question so we can take a closer look.
Best regards,
Mike
Worked like a charm. thanks Mike!
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon