link_ to_ remove_ tag
string | link_to_remove_tag
returns string
Generates an HTML <a> tag with an href attribute linking to the current blog or collection, filtered to show
only articles or products that have any currently active tags, except the provided tag.
Tip
To learn more about filtering by tag, refer to Filter articles by tag or Filter collections by tag.
Tip:
To learn more about filtering by tag, refer to Filter articles by tag or Filter collections by tag.
Tip: To learn more about filtering by tag, refer to <a href="/themes/architecture/templates/blog#filter-articles-by-tag">Filter articles by tag</a> or <a href="/themes/navigation-search/filtering/tag-filtering">Filter collections by tag</a>.
{% for tag in collection.all_tags %}
{%- if current_tags contains tag -%}
{{ tag | link_to_remove_tag: tag }}
{%- else -%}
{{ tag | link_to_add_tag: tag }}
{%- endif -%}
{% endfor %}
Code
{% for tag in collection.all_tags %}
{%- if current_tags contains tag -%}
{{ tag | link_to_remove_tag: tag }}
{%- else -%}
{{ tag | link_to_add_tag: tag }}
{%- endif -%}
{% endfor %}Data
{
"collection": {
"all_tags": [
"extra-potent",
"fresh",
"healing",
"ingredients"
]
},
"template": "collection"
}Output
<a href="/services/liquid_rendering/extra-potent" title="Narrow selection to products matching tag extra-potent">extra-potent</a>
<a href="/services/liquid_rendering/fresh" title="Narrow selection to products matching tag fresh">fresh</a>
<a href="/services/liquid_rendering/healing" title="Narrow selection to products matching tag healing">healing</a>
<a href="/services/liquid_rendering/ingredients" title="Narrow selection to products matching tag ingredients">ingredients</a>
Output
<a href="/services/liquid_rendering/extra-potent" title="Narrow selection to products matching tag extra-potent">extra-potent</a>
<a href="/services/liquid_rendering/fresh" title="Narrow selection to products matching tag fresh">fresh</a>
<a href="/services/liquid_rendering/healing" title="Narrow selection to products matching tag healing">healing</a>
<a href="/services/liquid_rendering/ingredients" title="Narrow selection to products matching tag ingredients">ingredients</a>Was this page helpful?