append
string | append: string
returns string
Adds a given string to the end of a string.
{%- assign path = product.url -%}
{{ request.origin | append: path }}
{%- assign path = product.url -%}
{{ request.origin | append: path }}
{
"product": {
"url": "/products/health-potion"
},
"request": {
"origin": "https://polinas-potent-potions.myshopify.com"
}
}
Output
https://polinas-potent-potions.myshopify.com/products/health-potion
Was this page helpful?