Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi All, need to hide the price of a certain product type as is enquiries only. Need to hide the product price from the search.
Theme prestige, URL https://suite-nine.com/
Thanks, Daniel
Hey @DASCPA
Can you tell me the exact name of your product type so then I can give you a proper code?
Best Regards,
Moeed
Hi Moeed, Do you know how I can hide the products price on the search page of my website. it still showing after your code
it is for product type 'watches' thank you
Hey @DASCPA
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
{% if product.product_type == 'watches' %}
<style>
.price {
display: none;
}
</style>
{% else %}
<style>
.price {
display: block;
}
</style>
{% endif %}
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi I followed this and unfortunately the prices still show in search, see below.
Hey @DASCPA
Try this code instead, this should work
{% if product.product_type == 'watches' %}
<style>
sale-price.h6.text-subdued {
display: none;
}
</style>
{% else %}
<style>
sale-price.h6.text-subdued {
display: block;
}
</style>
{% endif %}
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi This code is still not working. Do you know any other way this can be done? the price is hidden from the collection page but I need the price hidden from the search page.
Hello to hide the price of a certain product type and make it an enquiry-only product in your e-commerce platform, you'll need to make a few changes. The exact steps depend on the platform or CMS you're using (e.g., WooCommerce, Shopify, Magento, etc.). Below are general instructions that should guide you through the process