Home Forums WoodMart support forum Product page

Product page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #326453

    shweta
    Participant

    Hello Team,

    1. I want to show the carousel product gallery in 3 columns instead of 2 columns in mobile view only. URL: https://blanc9.com/women-collection-by-shweta
    2. Hide reviews star in only shop page for better understanding please find the screenshot attached. URL: https://blanc9.com/shop
    3. I want the price discount next to the price not above the image discount price shown like Mytra.

    Best

    Attachments:
    You must be logged in to view attached files.
    #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.

Viewing 2 posts - 1 through 2 (of 2 total)