{"title":"prepend - Liquid Filter Reference","slug":"prepend-filter-reference","url":"https://support.storeconnect.com/articles/prepend-filter-reference","url_markdown":"https://support.storeconnect.com/articles/prepend-filter-reference.md","subtitle":null,"summary":"Adds a string to the beginning of another string. Use `prepend` to prefix URLs with domains or add labels before content.","type":"Developer_Documentation","video_url":"","keywords":"liquid, filters, prepend, text, storeconnect","last_modified":"2026-08-21T07:12:35+0000","body_markdown":"## Description\n\nAdds the specified string to the beginning of another string.\n\n| Property | Value |\n|----------|-------|\n| **Return Type** | string |\n| **Category** | text |\n\n## Examples\n\n\n```liquid\n\n{{ \"apples, oranges, and bananas\" | prepend: \"Some fruit: \" }}\n```\n\n\n**Output:** `Some fruit: apples, oranges, and bananas`\n\n`prepend` can also accept a variable as its argument\n\n\n```liquid\n\n{{ \"index.html\" | prepend: url }}\n```\n\n\n**Output:** `example.com/index.html`"}