Home Forums Basel support forum Related products do not display correctly Reply To: Related products do not display correctly

#1122

Artem Temos
Keymaster

It seems to be a small issue with our theme related products size option. Try to change the following lines of code in the file basel/woocommerce/single-product/related.php

$slider_args = array(
	'slides_per_view' => apply_filters( 'basel_related_products_per_view', 4 ),
	'title' => __( 'Related Products', 'woocommerce' )
);

with this one

$slider_args = array(
	'slides_per_view' => apply_filters( 'basel_related_products_per_view', 4 ),
	'title' => __( 'Related Products', 'woocommerce' ),
	'img_size' => 'shop_catalog'
);