Hi - I have a couple of items that I would like to show on my store, however they are bespoke so can’t be ordered online - I would like an ‘Enquire Now’ button on the product page and category page instead of Add to Cart. I have managed to remove the price on the product but not the category page, but can’t find how to add a button to email. I am on Patisserie Theme.
Any tips or thoughts would be so helpful.
Thanks
Claire - Pink Aubergine Branded Bakes
Please add tag those products to “bespoke“. So you can find out that these are bespoke products.
Then modify the product form in the theme code. This is just an example of code below.
you can refer it to understand how you can do it.
{% if product.tags contains 'bespoke' %}
<a class="button" href="/pages/product-enquiry">
Enquire Now
</a>
{% else %}
{{ form | payment_button }}
{% endif %}
It works like if product is normal then it shows add to cart button but for bespoke products it shows “Enquire Now“ button.
You can change link to contact page or other page as well as per your need.
Hope this helps!
You can assign a custom template to those products and instead of cart buttons add either a “Custom liquid” with the code like above, or just some block which allow you to output a link or a button…
Or maybe output a contact form instead, for this one you can use Shopify forms (it is flexible) or some other form builder.
This depends on what your theme offers…
For the price on collection page – one option is to hide the price with CSS.
Say, if these products have “Bespoke” in title, you can use code like this:
product-card:has([title*="Bespoke"]) .price {
display: none;
}
Or if the product url has “bespoke” in it, then
product-card:has([href*="bespoke"]) .price {
display: none;
}
And you can combine rules, like
product-card:has([title*="Bespoke"]) .price,
product-card:has([title*="Custom"]) .price {
display: none;
}
These selectors are case-sensitive. You may add the code to “Theme settings”-> “Custom CSS” when in “Edit theme”.
The result would be like this:
Hi @user3078
Just to confirm your requirement: you would like to replace the Add to Cart button with an “Enquire Now” button for those bespoke items.
When a customer clicks the Enquire Now button, how would you like it to work?
• Should it redirect customers to your Contact page ?
• Do you already have an Enquiry form on your website that it should open?
• Or would you prefer a popup enquiry form to appear on the product page where customers can submit their details?
Once I know which option you prefer, I can guide you on the best way to set this up in your Patisserie theme .
Best regards,
Devcoder 
Thanks so much for all your replies!
I would like the Enquire Now button to direct to an email or my contact page/form - either is fine, whatever works best! A pop up form would be even better but I don’t want to overcomplicate it - I use Zoho Forms so can easily create a form to pop up.
Hi @user3078
Okay, could you please send me the collaborator access code so I can implement this on your store?