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

    Hi,

    there is a little yellow mouse over box with the text “Page 1” on most of my text boxes. Does anybody know how i can deactivate the mouse over?

    Thanks!

    #304323

    Hi AlbatrosDatenservice!

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

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

    Regards,
    Yigit

    #304372

    Hey Yigit,

    thanks a lot. Unfortunately, the mouseover is still there. You can see it here:

    http://www-neu.albatros.net/?page_id=3569

    Just leave the mouse over the text for a second and it will show you “Page 1” :)

    Any other idea?

    all the best
    Albatros

    #304375

    Hey!

    Please use following code instead

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('div.page').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.