Install instructions
Warning
If the automatic theme installation hasn’t worked, we suggest you reach out to us at support@zapiet.com —we’ll be happy to install the app for you.
Only proceed if you are comfortable editing code yourself.
Step 1
Download the latest files from our release notes article.
Step 2
Upload storepickup.js and storepickup.scss.liquid to your themes Assets folder
Step 3
Create an empty snippet file called storepickup-addons.liquid
Step 4
Open layout/theme.liquid and search for the following code:
</head>
Prepend the following to the line mentioned above:
{% include "storepickup" %}
Step 5
Open sections/cart.liquid and search for the following:
<div class="cart-buttons-container">
Append the following code to the line above:
<div id="storePickupApp"></div>
Step 6
Open sections/cart.liquid and search for the following:
{% unless property.last == blank %}
Replace the code above with the following:
{% unless property.last == blank or property.first == "_ZapietId" %}
Step 7
Open snippets/mini-cart.liquid and find the following code:
{% unless property.last == blank %}
Prepend this code to the code above:
{% unless property.last == blank or property.first == "_ZapietId" %}
Step 8
Open snippets/mini-cart.liquid and find the following code:
<a class="button mini-cart-checkout-button" href="/checkout">
Replace the code above with the following:
<a class="button mini-cart-checkout-button" href="/cart">
Step 9
Open sections/header.liquid and find the following code:
<a class="checkout-link" href="/checkout">{{ "layout.header.checkout" | t }}</a>
Replace the code above with the following:
<a class="checkout-link" href="/cart">{{ "layout.header.checkout" | t }}</a>