Skip to content

Instantly share code, notes, and snippets.

@magician11
Last active August 31, 2023 06:12
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save magician11/bb78111647af5e96c901 to your computer and use it in GitHub Desktop.
Save magician11/bb78111647af5e96c901 to your computer and use it in GitHub Desktop.
How to create a reorder button in Shopify's Liquid
{% for order in customer.orders %}
{% assign reorder_url = "" %}
{% for line_item in order.line_items %}
{% capture reorder_url %}{{ reorder_url | append: line_item.variant_id | append: ':' | append: line_item.quantity | append: ',' }}{% endcapture %}
{% endfor %}
<a href="{{ '/cart/' | append: reorder_url }}" class="button tiny">reorder</a>
{% endfor %}
@RajvirS99
Copy link

This is a great help!
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment