All things Shopify and commerce
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
I have tried to use various codes to hide only a selection of products on my Impluse theme store with no success.
Is anyone able to help me out with the code and where it should be placed?
Solved! Go to the solution
This is an accepted solution.
Alternatively, you can make a separate template without a price
Hi @tash27,
kindly provide your store URL please and if it is password protected, please share the password as well.
Thanks
Hi
Sorry, it's
ubu6rd-u9.myshopify.com
Hi @tash27,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>
{% if product.handle == 'groovy' or product.handle == 'another-product' %}
<style>
.product-block--price {
display: none !important;
}
</style>
{% endif %}
Thanks!
This is an accepted solution.
Alternatively, you can make a separate template without a price
This worked great, thanks very much!