If you use Listing Feeds in Carousel mode, this snippet allows those feeds to scroll to the left automatically.
jQuery(document).ready(function($){
setTimeout(function() {
if ( $(' .listing-feed-carousel .owl-item' ).length ) {
$( ' .listing-feed-carousel').trigger('destroy.owl.carousel');
$( " .listing-feed-carousel").owlCarousel({
loop: true,
margin: 20,
items: 3,
autoplay: true,
autoplaySpeed: 500,
smartSpeed: 10000,
fluidSpeed: 10000,
responsive: {
0: {
items: 1,
margin: 0
},
768: {
items: 2
},
1e3: {
items: 3
}
}
});
$( ' .listing-feed-carousel').trigger('refresh.owl.carousel');
}
}, 1);
});