Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #304880

    Hi Kriesi

    I am trying to remove the tooltips on the slideshow on this page:
    wp.marlowfilm.dk
    I read about editing the js/avia.js file but forgot where to find it.
    Is it best to set up a child theme for this? I am unsure about editing
    the original files.
    thanks!
    nancy

    • This topic was modified 9 years, 8 months ago by Munford.
    #304886

    Hey Nancy!

    Please add following code to Functions.php file in Appearance > Editor

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('ul.avia-slideshow-inner img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    Best regards,
    Yigit

    #304888

    Is that a better way to do that?
    I have a problem that the Appearance Editor is missing from my menu.
    I have tried disabling some plugins but no change.
    any suggestions?
    N

    • This reply was modified 9 years, 8 months ago by Munford.
Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘tool tips in slideshow’ is closed to new replies.