Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #693401

    Hello! I’m loving your theme and definitely enjoying each update that’s released! My question is – is there any way to have the text caption come on the screen as it does for your full screen slider and then fade out, say, after 5 or 10 seconds or so? I utilize a lot of video on my website and wanted to see if this was possible to do to “clear the screen” sorta speak. I know this may be a little reaching in terms of if it can be done, but I wanted to pose the question. Thanks again for such a great theme!

    #693829

    Hey mrjohnson2,

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

    function avia_remove_slider_captions(){
    ?>
     <script>
    jQuery(window).load(function(){
    setTimeout(function(){
      jQuery('.av-slideshow-caption').hide("slow");
    }, 10000);
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'avia_remove_slider_captions');
    

    10000ms = 10 seconds. Adjust it as needed

    Best regards,
    Yigit

    #693842

    Awesome man! You guys are great. One more quick question and if not no worries – but is there any way to simply make the text fade out? Right now, it appears as though it fades, but also shoots up to the left corner of the screen. Or could it even just disappear completely after X amount of seconds? Thanks again! (Don’t mean to be a pain – but just wanted to check). Have a great weekend coming up!

    #693862

    Hi!

    Please try changing the code to following one

    function avia_remove_slider_captions(){
    ?>
     <script>
    jQuery(window).load(function(){
    setTimeout(function(){
      jQuery('.av-slideshow-caption').fadeOut("slow");
    }, 10000);
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'avia_remove_slider_captions');

    Cheers!
    Yigit

    #693878

    PERFECT!! You guys rock! Thank you so much. I appreciate your assistance and your time in looking at this! Have a great weekend!

    #693880

    Hey!

    You are welcome!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Enjoy your weekend!

    Cheers!
    Yigit

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