Answers for "concat strings shopify liquid"

0

concat strings shopify liquid

{% comment %}
	You can concat strings in Shopify liquid code by using the 
    append filter. See the example below, then check out the 
    docs (link added as source) :)
{% endcomment %}

{% assign string1 = 'foo' %}
{% assign string2 = ' bar baz!' %}
{{ string1 | append:string2 %}

{% comment %}
	Expected output from the above is:
    
    foo bar baz!
{% endcomment %}
Posted by: Guest on March-01-2022

Code answers related to "concat strings shopify liquid"

Browse Popular Code Answers by Language