I use the bxslider-wp plugin and everything is working fine unless I want to switch on the infinite loop option. Then the slides display for a few milliseconds and then vanish behind the clone of the last slide. I don't know why.
According to a solution of this post I already tried:
.bx-clone{
display: none !important;
}
and adding following:
onSliderLoad: function() {
$(".bx-wrapper").css(
"-webkit-transform",
"translate3d(-950px, 0, 0) !important"
);
}
to the initialize.min.js and the initialize.js files of the plugin. But it didn't help. Anyone knows how to fix this? Unfortunately I'm not allowed to show the site with the bug so sorry for the missing code...