-
AuthorPosts
-
September 29, 2016 at 9:52 pm #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!
September 30, 2016 at 3:34 pm #693829Hey 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,
YigitSeptember 30, 2016 at 3:47 pm #693842Awesome 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!
September 30, 2016 at 4:02 pm #693862Hi!
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!
YigitSeptember 30, 2016 at 4:13 pm #693878PERFECT!! You guys rock! Thank you so much. I appreciate your assistance and your time in looking at this! Have a great weekend!
September 30, 2016 at 4:15 pm #693880Hey!
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 -
AuthorPosts
- You must be logged in to reply to this topic.