Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1031859

    Is there any way to turn off the tool tips that show up on flip box in icon grid?

    sample

    Thx -B

    #1031907

    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

    #1032770

    Worked like a charm. thanks Mike!

    #1032786

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Hide tool tips on icon grid’ is closed to new replies.