'How to check for the existence of an element in a Liquid array (Shopify) without using join
I want to check for array values in an array created from a "split". Is there a way to do it without doing the following:
{%- assign blog_tags_string = blogs.news.all_tags | join ' ' -%}
{%- if blog_tags_string contains blog_title -%}
{%- assign is_tag_page = true -%}
{%- else -%}
{%- assign is_tag_page = false -%}
{%- endif -%}
Solution 1:[1]
Reading the documentation we can see that :
contains
can also check for the presence of a string in an array of strings.
So, no join
is necessary, and this will do the job.
{%- if blogs.news.all_tags contains blog_title -%}
...
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | David Jacquel |