Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #261843

    Hi, I am just wondering on how to remove the tooltip from all hyperlinks in all pages. I did once in another theme where I commented out a href I believe. But I want to do it the right way. I am kinda new at this so I guess laymen terms would be best.

    #262159

    Hey!

    Try adding this at the end of js/avia.js:

    jQuery(function() {
      jQuery("a").removeAttr("title");
    });

    Best regards,
    Josue

    #262426

    Sorry still pretty new to this. How and where do you edit the jQuery functions? Is it in the dashboard or filezilla or whaterver? Thank you for your help.

    #262428

    Hi!

    You should go to Enfold/js folder via FTP and edit avia.js file that is inside. Or you can try this plugin – http://wordpress.org/plugins/solid-code-theme-editor/

    Cheers!
    Yigit

    #263983

    Hi, i tried looking at my ftp file zilla to edit the jquery however, when I try to view the file, an error comes up and it is undefined. However, I can go through my host gator cp through the www file and find the js file so I am not sure if I did something wrong. Can you go through my ftp and I will give you the info to do that just to make sure everything is in order plz. Thank you for your time. Brandon

    #264052

    Hi!

    Did you edit it on the hostgator cp? can you post a link to your website?

    Regards,
    Josue

    #265862
    This reply has been marked as private.
    #265874

    Hi!

    It seems like code Josue posted is not present in your themes Avia.js file. You should edit the file via cPanel and copy&paste the code Josue posted above to the bottom of Avia.js file

    Best regards,
    Yigit

    #265933

    Hey!

    Try adding this at the end of the theme functions.php:

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

    Cheers!
    Josue

    #267347

    Hi sorry for the late reply.
    Should I still copy and paste the first code on my Cpannel or should skip that and just add the code above to my functions.php: ? Thank you for your help.

    #267422

    Just add the last code to functions.php (at the very end).

    Cheers!
    Josue

    #267668

    Thank you.

    #267670

    You are welcome, glad we could help :)

    Regards,
    
Josue

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