-
AuthorPosts
-
November 7, 2014 at 6:11 am #347530
How do we disable the slider image hover file name effect? In other words, when you hover over the slider, after a second it shows the image name in yellow. If it were just an image, it would be fine, but we think it’s not necessary for this slider that speaks for itself.
Example below:
November 7, 2014 at 7:13 am #347545Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { $(".avia-slideshow-inner img").removeAttr("title"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueNovember 8, 2014 at 7:07 pm #348207I’m just using the main theme. What’s the best way to implement child theme while keeping any previous changes?
November 8, 2014 at 8:45 pm #348228Hi!
Install the child theme, then use this button to transfer the parent theme settings to the child one – http://screencast.com/t/pHfCRYl7Mi5, additional re-configuration may be needed (widgets, menus).
Regards,
JosueNovember 16, 2014 at 6:23 am #351957Is this really the only way to get the slider to stop showing the file name of the image? I haven’t had this issue with other slider plugins. It’s really an odd thing to have the slider show the file name when they serve a different purpose and have other navigation on the sides.
November 17, 2014 at 12:51 am #352227Hey!
You asked on how to implement a child theme, if you no longer want that then you can use the following plugin to store custom functions separated from the theme source:
https://wordpress.org/plugins/functionality/Regards,
JosueNovember 17, 2014 at 4:36 am #352262This reply has been marked as private.November 17, 2014 at 8:25 am #352288Hi!
Did you try the solution i posted here?
https://kriesi.at/support/topic/how-do-we-disable-the-slider-image-hover-file-name-effect/#post-347545Regards,
Josue -
AuthorPosts
- You must be logged in to reply to this topic.
