Hi,
You can this tweak:
1) Go to file: root/templates/ja_brickstore/html/com_virtuemart/sublayouts/categories.php
2) At the end of file, look for this script:
(function($){
jQuery(document).ready(function($) {
$(".category-view .owl-carousel").owlCarousel({
loop:true,
navText : ["<i class='fa fa-long-arrow-left'></i>", "<i class='fa fa-long-arrow-right'></i>"],
responsiveClass:true,
responsive:{
0:{
items:1,
nav:true
},
600:{
items:2,
nav:true
},
1000:{
items:2,
nav:true,
loop:false
}
}
})
});
})(jQuery);
and change the number of items to 2:
1000:{
items:2,
nav:true,
loop:false
}
as above
Regards