Home › Forums › WoodMart support forum › Bordered Grid (Inside) for Cross Sell, Up Sell & Related Products › Reply To: Bordered Grid (Inside) for Cross Sell, Up Sell & Related Products
April 14, 2022 at 11:52 am
#368442
Bogdan Donovan
Keymaster
Hi,
Try to navigate to the woodmart/woocommerce/single-product/
and open filerelated.php
.
Replace following part of code:
$slider_args = array(
'slides_per_view' => ( woodmart_get_opt( 'related_product_columns' ) ) ? woodmart_get_opt( 'related_product_columns' ) : apply_filters( 'woodmart_related_products_per_view', 4 ),
'img_size' => 'woocommerce_thumbnail',
'products_bordered_grid' => woodmart_get_opt( 'products_bordered_grid' ),
'custom_sizes' => apply_filters( 'woodmart_product_related_custom_sizes', false ),
'product_quantity' => woodmart_get_opt( 'product_quantity' )
);
To the next one:
$slider_args = array(
'slides_per_view' => ( woodmart_get_opt( 'related_product_columns' ) ) ? woodmart_get_opt( 'related_product_columns' ) : apply_filters( 'woodmart_related_products_per_view', 4 ),
'img_size' => 'woocommerce_thumbnail',
'products_bordered_grid' => woodmart_get_opt( 'products_bordered_grid' ),
'products_bordered_grid_style' => woodmart_get_opt( 'products_bordered_grid_style' ),
'custom_sizes' => apply_filters( 'woodmart_product_related_custom_sizes', false ),
'product_quantity' => woodmart_get_opt( 'product_quantity' )
);
This issue will also be fixed in the next update.
Kind Regards