Hello, thanks for using Woo Related Products and sorry for the late reply.
Use the function below to alter slider columns (you can alter the function per your needs ofc)
function v_woo_related_slider() {
if (is_product()) {?>
<script>
jQuery(document).ready(function($) {
$("#woorelatedproducts").data('owlCarousel').destroy();
var owl = $("#woorelatedproducts");
owl.owlCarousel({
items : 4,
itemsDesktop : [1000,3],
itemsDesktopSmall : [900,3],
itemsTablet: [600,2],
autoPlay: 3500,
itemsMobile : false,
});
});
</script> <?php
}
}
add_action( 'wp_footer', 'v_woo_related_slider' );
Next versions will include an option to set columns for Static display and slider.Until then use the above function.
Let me know if you need anything else,
Thank you.