{"title":"append - Liquid Filter Reference","slug":"append-filter-reference","url":"https://support.storeconnect.com/articles/append-filter-reference","url_markdown":"https://support.storeconnect.com/articles/append-filter-reference.md","subtitle":null,"summary":"Adds a string to the end of another string. Use `append` to build file paths, URLs, or combine text with variables.","type":"Developer_Documentation","video_url":"","keywords":"liquid, filters, append, text, storeconnect","last_modified":"2026-08-21T07:12:35+0000","body_markdown":"## Description\n\nAdds the specified string to the end of another string.\n\n| Property | Value |\n|----------|-------|\n| **Return Type** | string |\n| **Category** | text |\n\n## Examples\n\n\n```liquid\n\n {{ \"/my/fancy/url\" | append: \".html\" }}\n```\n\n\n**Output:** `/my/fancy/url.html`\n\n`append` can also accept a variable as its argument\n\n\n```liquid\n\n{% assign filename = \"/index.html\" %}\n{{ \"website.com\" | append: filename }}\n```\n\n\n**Output:** `website.com/index.html`"}