This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% assign country = shop.address.country %} | |
| {% if customer.default_address %} | |
| {% assign country = customer.default_address.country %} | |
| {% assign zip = customer.default_address.zip %} | |
| {% endif %} | |
| <div class="tab shipping-calculator"> | |
| <input class="tab__input" id="tab1" type="checkbox" name="tabs" checked> | |
| <label class="tab__label" for="tab1">Shipping Calculator</label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div data-section-type="cart-template"> | |
| <div class="page-header"> | |
| <h1 class="majortitle">{{ 'cart.general.title' | t }}</h1> | |
| </div> | |
| {% if cart.items == empty %} | |
| <div class="row-spacing align-centre"> | |
| <p>{{ 'cart.general.empty' | t }}</p> | |
| </div> | |
| {% else %} |
OlderNewer