How can I manually hide product variants on my webstore?

Hi there,

I am working on building my Shopify webstore and for several of my products, I have quite a few variants. Some of these variants are seasonal and I would like to be able to hide them from a customer without having to delete the variant and re-adding it once the variants are available again.

I am tried the WipeOut app but it does not have the functionality I need. If a solution is available that involves adding a “Hidden” or “Discontinued” tag to my items, that would work for me.

Thanks!

  • Simon

Hi @simondumalski

By variants do you mean complete products or sub-products within a smaller product?

How many do you have? A manual codification for that might be a solution if these products don’t change.

Let me know!

Hi,

Define one common tag to hide the variant like ‘hide-season-variant’.
After that make a loop of the tags in the product template and keep this condition at the variant div.
condition like:

{% unless tag == ‘hide-season-variant’ %}
your variant div here
{% endunless %}