I’ll modify the content later, for now can you just tell me what will you do to make this possible ? if needed I would like to be sure how can I modify / remove this. So if you add code please tell me what and where.
Oh no, for now its ok ! of course everything is clear for the collection created (its very simple).
But I meant, for the part I asked you about the sold out product being not grey on this collection only, could you give me the information of how you did it ? just so I can manage it in the future. Thanks
Then you can modify it like this -- would need to replace "coming-soon" with the *handle* of this new collection:
```php
{% liquid
assign collections = product.collections | map: "handle"
if product.available or collections contains "coming-soon"
assign sold_class = ""
else
assign sold_class = "sold-out"
endif
%}
It doesnt work since I would like sold out to be grey for every collection EXCEPT for one.
I created a collection “coming-soon” and I would like to showcase my futur product on it, but since we add this class for sold product, they are grey so people cant see them…