Home Forums WoodMart support forum Product page Reply To: Product page

#326504

Hello,

I saw the screenshot you attached.

1) Sorry but it is not possible to change the number of columns for the categories carousel.

You can try adding the following code in your child theme fucntions.php file:

add_filter('woodmart_categories_shortcode_custom_sizes',
			function() {
				return array(
					'desktop'          => 4,
					'tablet_landscape' => 4,
					'tablet'           => 4,
					'mobile'           => 3,
				);
			}
		);

This code will work globally for all carousels and it is not possible to make it individually.

2) Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

.product-grid-item .star-rating {
    display: none;
}

3) Sorry but there is no option in Theme Settings available for that.

Best Regards.