{% paginate customer.orders by 20 %}
{{ 'customer.account.title' | t }}
{{ 'layout.customer.log_out'| t }}{{ 'customer.orders.title' | t }}
{% if customer.orders.size != 0 %}
{% for order in customer.orders %} {% endfor %}| Re-order | {{ 'customer.orders.order_number' | t }} | {{ 'customer.orders.date' | t }} | {{ 'customer.orders.payment_status' | t }} | {{ 'customer.orders.fulfillment_status' | t }} | {{ 'customer.orders.total' | t }} |
|---|---|---|---|---|---|
| Reorder | {{ order.name }} | {{ order.created_at | date: format: 'month_day_year' }} | {{ order.financial_status_label }} | {{ order.fulfillment_status_label }} | {{ order.total_price | money }} |
{% else %}
{{ 'customer.orders.none' | t }}
{% endif %}
{{ 'customer.account.details' | t }}
{{ customer.name }}
{{ customer.default_address | format_address }}
{{ 'customer.account.view_addresses' | t }} ({{ customer.addresses_count }})
{% comment %}
{% endcomment %}{% if paginate.pages > 1 %}
{% include ‘pagination’ %}
{% endif %}
{% for order in customer.orders %}
Select products to Reorder
{% for lineitem in order.line_items %}
{%if lineitem.variant.inventory_quantity <= 15 %} soldout{%endif%}
×
{% endfor %}
.center { display: none; position: fixed; z-index: 9; padding-top: 0px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: black; background-color: rgba(0, 0, 0, 0.4); } .hideform { display: none; } #Re_orderbtnz { margin: 15px 10px 15px 10px; float: right; } .popcontent { background-color: #fefefe; margin: auto; /* padding: 16px 25px 32px 25px; */ border: 1px solid #888; width: 70%; max-width: 700px; position: absolute; left: 50%; top: 55%; transform: translate(-50%, -50%); } .reorder_wholediv .show { background-color: #4CAF50; border: none; color: white; padding: 9px 5px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; } .ordersum { padding: 15px; border-bottom: 2px solid #e5e5e5; } span.advance_reorder_mobilehide { font-weight: bold; color: #ff0000; font-size: 22px; } span.odertolpric { font-weight: bold; color: #3a3535; font-size: 22px; } .center .close { color: #000; position: absolute; font-size: 28px; font-weight: bold; top: 5px; right: 32px; } .hulk_title_bar { display: flex; align-items: center; padding: 10px 20px; } .hulk_item { width: 65%; text-align: left; } .hulk_quantity { width: 15%; display: flex; align-items: center; flex-wrap: wrap; } .hulk_price { width: 15%; } .recart__itemrow { overflow-y: auto; width: 100%; display: flex; align-items: center; padding: 15px; border-bottom: 1px solid #eaecee; } .reitm_wrapper { width: 65%; text-align: left; display: flex; align-items: center; } .recart__qtys { width: 15%; text-align: left; } .reorder_wholediv { max-height: 45vh; overflow-y: auto; } .reitm_prics { width: 15%; } .reitem__title { padding: 15px; } .modal-footer { background: #e3e3e347; } @media (max-width: 600px){ .popcontent { width: 96%; } .reorder_wholediv .click_check { margin-left: 10px !important; } .recart__qtys { width: 50%; float: left; } .reitm_prics { width: 50%; float: left; } .reitm_wrapper { width: 100%; text-align: left; display: flex; align-items: center; } .recart__itemrow { overflow-y: auto; width: 100%; display: block; align-items: center; padding: 15px; border-bottom: 1px solid #eaecee; } }