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

    Hi

    In blog list, whenever the mouse hovers the title, it shows “Permanent Link: <title>” pop up texts.
    The same on the side bar blog posts.

    Can i remove it entirely? Since it is already showing the full title, I find it redundant to pop up the title yet again.
    So when I mouse over the links, it pops up nothing.

    (side bar links like tags, menu, etc doesnt have the text pop up. Only blog titles)

    Thanks

    #1025635

    Hey data76,

    Well, you can only remove the title attribute from the link by JavaScript.

    Here is a thread for you to consider
    https://stackoverflow.com/questions/15364063/is-it-possible-to-hide-the-title-from-a-link-with-css

    Best regards,
    Victoria

    #1025788

    Hi Victoria

    Thanks!

    But where do I edit the file? Can i use Enfold Theme, so that any updates will not reverse the effect?

    #1026042

    Hi data76,

    You need to use the child theme and put the code in functions.php.

    Wrapped in code like this:

    
    function add_custom_script(){
    ?>
    <script>
    
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script'); 
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

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