Hi. I was wondering if anyone knows how to hide the item price once the product as been sold (my theme is MINIMAL). I move the products into a separate “Gallery” collection once sold as I want to display my completed artworks but do not want the price displayed or the option to buy left on those items.
I have verylimited knowledge on HTML coding so if you can provide step-by-step instructions on how to integrate this on my Shopify shop that would be helpful. Thanks you for your help 
Hi @RachelPainting If you need to get customization done for you then contact me via the info in my signature.
Below is a CSS band-aid fix that only visually hides all element(s) that match the selectors; including quickviews, product recommendations,etc.
To not render it all as part of the frontend source code you’d need to customize the logic of product.liquid template(s).
Always backup themes before changing code
Add the following to either the end of theme.scss.liquid, or at the bottom of theme.liquid, or to the bottom of product.liquid or similar templates.
{% if product.collections contains "gallery" %}
{% endif %}
Also be aware in OS2.0 themes you can make an alternate template and delete the price and buy-buttons blocks for those archived products.
Hi @RachelPainting ,
Please follow the steps below:
- Step 1: Hidden in each product item: Please go to Actions > edit code > Snippets > product-grid-item.liquid file and paste this at the bottom of the file:
- Step 2: Hidden at product details: Please go to Actions > edit code > sections > product-template.liquid file and paste this at the bottom of the file:
Hope it helps!
Hi - sorry for the late reply, only just got a chance to try this.
Unfortunately it did not work. Appreciate your help though 