This is also a problem for me.
Definitely broken, definitely irritating. Flamingo has sent about 10,000 messages to “spam” that are NOT spam, and not only can you not change the messages per page, but if you try to change it while looking at spam messages, you default back to “inbox”.
Arnaud: in the below example code, you’d change #slider99 to the id found in the wrapper div, it’ll have a class of “owl_carousel”. I’ll leave it to you to work out the exact implementation you’d need.
jQuery( document ).ready(function( $ ) {
$('a.jumpToSlide').click(function(){
$("#slider99").trigger('owl.jumpTo', $(this).attr('data-slide'))
});
});
then use a link like so, change 5 to the slide of your choice
<a href="#" data-slide="5" class="jumpToSlide">This is a link</a>
-
This reply was modified 9 years, 5 months ago by tobybort.
-
This reply was modified 9 years, 5 months ago by tobybort. Reason: code display correction