Image Swatches not showing
-
I want to add image swatches on my single product page and also set price ranges for products as I don’t want to display actual prices.
Attachments:
You must be
logged in to view attached files.
Hello,
Maybe you have enabled the catalog mode that is why the swatches are not showing. Try to disable the catalog mode and check the issue.
If you have any questions feel free to contact us.
Best Regards.
But I don’t need a cart option as I am making a site for my catalogs only.
how do I add price range? rather than a specific price.
Hello,
The below code will help you to hide the “Add to cart” button on the archive page. Enter it into the “Global Custom CSS” area in Theme Settings -> Custom CSS.
.product-grid-item .wd-add-btn {
display: none;
}
The below will help you to hide the “Add to cart button on a single product page.
.single_add_to_cart_button {
display: none !important;
}
What type of price range do you want to add? Please give some examples so I will check and give you a possible solution.
Best Regards.
I don’t want to provide an absolute price but a range like I have added in this product with variable product option.
Attachments:
You must be
logged in to view attached files.
Hello,
Try to create a variable product or simple product and add the regular price or sale price. In the product edit page, locate the “Product Data” section. Under the “General” tab, you’ll find the “Regular Price” field. Enter the regular price for the product in this field.
Select a variable product For each variation, you will see fields for Regular Price and Sale Price. Enter the appropriate prices for each variation.
For more details check this:
https://woocommerce.com/document/variable-product/
Best Regards.