Hi @jhanjon,
not sure if this will work, but you could try adding this to your functions.php file.
function jhanjon_remove_fade_in($options, $slider_id, $settings) {
$options['fadeFirstSlide'] = false;
return $options;
}
add_filter('metaslider_flex_slider_parameters', 'jhanjon_remove_fade_in', 10, 3);
Oops, just saw this post, thanks, I added it and lost the fade for the entire slides, note that there is a flash which occurs with a third refresh.
Hi @jhanjon,
Apologies, the false should be a string, like:
$options[‘fadeFirstSlide’] = ‘false’;
Thanks, that did allow the fade in but the jerkiness is still there, possibly a tad worse. I think this may be mucking around with the CSS too much, if I have enough time I will remove any CSS customization
Just removed all the custom CSS tags
Hi @jhanjon,
Let me know if you run into any more issues, thanks.