A space to discuss online store customization, theme development, and Liquid templating.
HOW TO MAKE PRODUCT TAGS VISIBLE FOR FILTERING SEARCHES ON DAWN THEME
There is no option to do this on dawn but you need to do this by adding custom code on facets.liquid file see below code see below screen short and code
{% if collection.all_tags.size > 0 %}
<ul class="tag-filters">
{% for tag in collection.all_tags %}
{% if current_tags contains tag %}
<li class="tag-filters__item active">{{ tag | link_to_remove_tag: tag }}</li>
{% else %}
<li class="tag-filters__item">{{ tag | link_to_add_tag: tag }}</li>
{% endif %}
{% endfor %}
</ul>
{% endif %}
If helpful then please Like and Accept the Solution.
Shopify theme and app developer.
Thanks
There is no a way to have it in a descending menu? is not nice to have all the tags displayed on the page...
Your solution does work but unfortunately, I am really looking for something like this for example Plants (farm.one). It would be more like actual tags under all products. Thank you.
I solved using metafields...obviously this is not a solution for those who want to use the tags already in the products.