I’m having trouble with
How to add ‘Request Quote’ instead of actual price in WIX STORE?
The Wix Store does not allow me to add a product without adding a price, Since my product is an agri-tech product which costs about 3-4 lakhs depending on the customer’s requirements. I also have products that have prices and that can be bought online.
Help me.
Hey, Ankitha,
I was having this same issue. I Figured it out, But I would love to have more information on how your products are listed on your website to know how the fix should be handled!
But Here is a quick fix I used on my website!
$w("#repeater2").onItemReady(($item, itemData, index) => {
if (itemData.slug && itemData.slug.includes("the brand you are trying to hide")) {
$item("#productPrice").customClassList.add("hidden");
}