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

#154080

Hello,

1. If you want to hide those breadcrumb which shows on your product page you can use the below CSS code in Theme Settings >> Custom CSS >> Global Custom CSS:

.single-product .woocommerce-breadcrumb {
 display:none;
}

2. In the “Left (vertical position)” style more than 3 thumbnail are not available. You can check from Theme Settings >> Product Page >> IMAGES

Screenshot for clarification: https://jmp.sh/9aDwzvR

So if you want to display more than 3 thumbnails like 4 thumbnail you can use “ Bottom (horizontal carousel) ” style.

3. To change the size of the product image you can use the “Product image width” option from Theme Settings >> Product Page >> IMAGES.

4. It requires customization to show/hide the name of the vendor before the title of product or set hyperlink on the name of vendor. This is beyond our limitations.

5. To increase the width of “minus” and “plus” elements so they are easier to touch in touch screens. You can use the below CSS code in Global Custom CSS area under theme settings:

.quantity input[type=button] {
min-width: 60px;
}

6. To increase the size of shared icons. You can use the below CSS code in Global Custom CSS area under Theme Settings:

.single-product .woodmart-social-icons.icons-size-small i{
font-size:25px;
}

Best Regards.