I'm trying to render various Flexsliders inside another Flexslider in a wordpress page. This is the jquery so far:
jQuery(function ($) {
$(window).load(function() {
$('#vert').flexslider({
animation: "fade",
useCSS: true,
pauseOnHover: false,
touch: true,
slideshow: false,
namespace: "gal-",
selector: '.slides:first > li',
});
});
})
jQuery(function ($) {
$(window).load(function() {
$('#defgal').flexslider({
animation: "fade",
useCSS: true,
pauseOnHover: false,
touch: true,
selector: '.slides:first > li',
});
});
})
Also,the "slide" animation neither the "vertical" direction work, and options for the parent gallery applies to the children ones, such us the "false" slideshow.
Any tips?
It's a local installation, no url available.
Thank you in advance.