Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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:

    #347545

    Hi,

    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,
    Josue

    #348207

    I’m just using the main theme. What’s the best way to implement child theme while keeping any previous changes?

    #348228

    Hi!

    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,
    Josue

    #351957

    Is 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.

    #352227

    Hey!

    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,
    Josue

    #352262
    This reply has been marked as private.
    #352288
Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.