Hi,
I want to slow down the transition speed of fade animation in full-screen slider. I tried to find previous topics about this and I can only find very old answers.
Its adviced to change the speed inside shortcodes.js but there are not related codes anymore about this.
For example this line does not exist anymore or am I looking at wrong file?
https://kriesi.at/support/topic/transition-speed-in-full-screen-slider-hide-bullets/#post-1085709
Hey Enis,
Sorry for the late reply, please look in the file:
\enfold\config-templatebuilder\avia-shortcodes\slideshow\slideshow.js
on lines 41-42 (v4.6.2) for:
//transition speed when switching slide
transitionSpeed:900,
and adjust to suit and clear your browser cache a few times.
To ensure your customizations are not overwritten during theme updates, please copy your /slideshow/ directory to your child theme in a directory named /shortcodes/ like this:
/enfold-child/shortcodes/slideshow/
and add this function to your child theme functions.php
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
function avia_include_shortcode_template($paths)
{
$template_url = get_stylesheet_directory();
array_unshift($paths, $template_url.'/shortcodes/');
return $paths;
}
Best regards,
Mike