Ensuring Continue Shopping from the Multiple Address Process goes back to the Multi-address Cart Page 📦

In order to ensure that customers who enter address information in the multiple shipping address process get redirected back to the multiple shipping address cart, if they decide to continue shopping, please follow the below instrucitons.

Navigate to Shopify Admin -> Online Store -> Themes, and create a duplicate of your current theme.

When the theme is finished copying over, click on Actions -> Edit Code.

Under the “snippets” folder, click on the “add new snippet” link, and name the snippet “multiship-continue-shopping”. In this snippet, enter the following code, and click save.

{% assign multishipping = 'false' %}

{% for item in cart.items %}

  {% if template.name == 'cart' %}

    {% for p in item.properties %}

      {% if p.first == 'Address' %}

      	{% assign multishipping = 'true' %}

      {% endif %}

    {% endfor %}

  {% endif %}


{% endfor %}

{% if multishipping == 'true' and template.name == 'cart' %}
<script type="text/javascript">
  window.location = 'https://{{ request.host }}/a/ms/cart/';
</script>
<meta http-equiv="refresh" content="0;URL=https://{{ request.host }}/a/ms/cart/" />
{% endif %}

Now, in your theme.liquid file, right above the closing </head> html tag, add the snippet, and click save.

{% render 'multi-continue-shopping' %}

Need a more advanced multiple shipping address tool? 🚀🚀🚀

Start your 7-day free trial of ⭐⭐⭐⭐⭐ rated Giftship today!

Along with a more advanced multiple shipping address tool it includes:

Gift Messages 🏷️

Datepicker 📅

Upsells 📈

Auto Tagging #️⃣

Bundle Builder 📦

And much more!

Can't find the answer in our documentation?
Contact Support