Hi! yes thanks: here is the code:
/* What it does: Remove spaces around the email design added by some email clients. */
/* Beware: It can remove the padding / Margin and add a background color to the compose a reply window. */
html, body {
Margin: 0 auto !important;
padding: 0 !important;
width: 100% !important;
height: 100% !important;
}
/* What it does: Stops email clients resizing small text. */
* {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* What it does: Forces Outlook.com to display emails full width. */
.ExternalClass {
width: 100%;
}
/* What is does: Centers email on Android 4.4 */
div[style*="Margin: 16px 0"] {
Margin:0 !important;
}
/* What it does: Stops Outlook from adding extra spacing to tables. */
table,
th {
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
/* What it does: Fixes Outlook.com line height. */
.ExternalClass,
.ExternalClass * {
line-height: 100% !important;
}
/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */
table {
border-spacing: 0 !important;
border-collapse: collapse !important;
border: none;
Margin: 0 auto;
direction: ltr;
}
div[style*="Margin: 16px 0"] {
Margin:0 !important;
}
/* What it does: Uses a better rendering method when resizing images in IE. */
img {
-ms-interpolation-mode:bicubic;
}
/* What it does: Overrides styles added when Yahoo's auto-senses a link. */
.yshortcuts a {
border-bottom: none !important;
}
/* What it does: Overrides blue, underlined link auto-detected by iOS Mail. */
/* Create a class for every link style needed; this template needs only one for the link in the footer. */
/* What it does: A work-around for email clients meddling in triggered links. */
*[x-apple-data-detectors], /* iOS */
.x-gmail-data-detectors, /* Gmail */
.x-gmail-data-detectors *,
.aBn {
border-bottom: none !important;
cursor: default !important;
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}
/* What it does: Overrides blue, underlined link auto-detected by Gmail. */
u #body a {
color: inherit;
text-decoration: none;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
line-height: inherit;
}
/* What it does: Prevents Gmail from displaying an download button on large, non-linked images. /
.a6S {
display: none !important;
opacity: 0.01 !important;
}
/ If the above doesnβt work, add a .g-img class to any image in question. /
img.g-img div {
display:none !important;
}
/ What it does: Prevents underlining the button text in Windows 10 */
a,
a:link,
a:visited {
color: #000000;
text-decoration: none !important;
}
.header a {
color: ;
text-decoration: none;
text-underline: none;
}
.main a {
color: #000000;
text-decoration: none;
text-underline: none;
word-wrap: break-word;
}
.main .section.customer_and_shipping_address a,
.main .section.shipping_address_and_fulfillment_details a {
color: #302c2c;
text-decoration: none;
text-underline: none;
word-wrap: break-word;
}
.footer a {
color: #302c2c;
text-transform: none;
text-decoration: none;
text-underline: none;
}
/* What it does: Overrides styles added images. */
img {
border: none !important;
outline: none !important;
text-decoration:none !important;
}
td.menu_bar_1 a:hover,
td.menu_bar_6 a:hover {
color: #000000 !important;
}
th.related_product_wrapper.first {
border-right: 10px solid #fcfaf7;
padding-right: 5px;
}
th.related_product_wrapper.last {
border-left: 10px solid #fcfaf7;
padding-left: 5px;
}
/* What it does: Fixes fonts for Google WebFonts; */
[style*="Lato"] {
font-family: 'Lato',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif !important;
}
[style*="PT Serif"] {
font-family: 'PT Serif',Georgia,serif !important;
}
[style*="Lato"] {
font-family: 'Lato',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif !important;
}
[style*="PT Serif"] {
font-family: 'PT Serif',Georgia,serif !important;
}
/* Media Queries */
/* What it does: Removes right gutter in Gmail iOS app */
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) { /* iPhone 6 and 6 */
.container {
min-width: 375px !important;
}
}
/* Main media query for responsive styles */
@media only screen and (max-width:480px) {
/* What it does: Overrides email-container's desktop width and forces it into a 100% fluid width. */
.email-container {
width: 100% !important;
min-width: 100% !important;
}
.section > th {
padding: 10px 10px 10px 10px !important;
}
.section.divider > th {
padding: 20px 10px !important;
}
.main .section:first-child > th,
.main .section:first-child > td {
padding-top: 20px !important;
}
.main .section:nth-last-child(2) > th,
.main .section:nth-last-child(2) > td {
padding-bottom: 40px !important;
}
.section.recommended_products > th,
.section.discount > th,
.section.personal_discount > th {
padding: 20px 10px !important;
}
/* What it does: Forces images to resize to the width of their container. */
img.fluid,
img.fluid-centered {
width: 100% !important;
min-width: 100% !important;
max-width: 100% !important;
height: auto !important;
Margin: auto !important;
box-sizing: border-box;
}
/* and center justify these ones. */
img.fluid-centered {
Margin: auto !important;
}
/* What it does: Forces table cells into full-width rows. /
th.stack-column,
th.stack-column-left,
th.stack-column-center,
th.related_product_wrapper,
.column_1_of_2,
.column_2_of_2 {
display: block !important;
width: 100% !important;
min-width: 100% !important;
direction: ltr !important;
box-sizing: border-box;
}
/ and left justify these ones. /
th.stack-column-left {
text-align: left !important;
}
/ and center justify these ones. /
th.stack-column-center,
th.related_product_wrapper {
text-align: center !important;
border-right: none !important;
border-left: none !important;
}
.column_button,
.column_button > table,
.column_button > table th {
width: 100% !important;
text-align: center !important;
Margin: 0 !important;
}
.column_1_of_2 {
padding-bottom: 20px !important;
}
.column_1_of_2 th {
padding-right: 0 !important;
}
.column_2_of_2 th {
padding-left: 0 !important;
}
.column_text_after_button {
padding: 0 10px !important;
}
/ Adjust product images */
th.table-stack {
padding: 0 !important;
}
th.product-image-wrapper {
padding: 20px 0 10px 0 !important;
}
img.product-image {
width: 240px !important;
max-width: 240px !important;
}
tr.row-border-bottom th.product-image-wrapper {
border-bottom: none !important;
}
th.related_product_wrapper.first,
th.related_product_wrapper.last {
padding-right: 0 !important;
padding-left: 0 !important;
}
.text_banner th.banner_container {
padding: 10px !important;
}
.mobile_app_download .column_1_of_2 .image_container {
padding-bottom: 0 !important;
}
.mobile_app_download .column_2_of_2 .image_container {
padding-top: 0 !important;
}
.image_with_text th.column_1_of_2 {
padding: 20px !important;
padding-bottom: 10px !important;
}
.image_with_text th.column_2_of_2 {
padding: 20px !important;
padding-top: 10px !important;
}
.images_in_2_columns th.column_1_of_2 {
padding: 0 !important;
padding-bottom: 10px !important;
}
.images_in_2_columns th.column_2_of_2 {
padding: 0 !important;
padding-top: 10px !important;
}
}
/* Custom Media Queries */
@media only screen and (max-width:480px) {
.email-container > tbody > tr > th {
padding: 0 0;
}
.header .section_wrapper_th,
.main .section_wrapper_th,
.column_unsubscribe {
padding-right: 10px !important;
padding-left: 10px !important;
}
.column_logo {
display: block !important;
width: 100% !important;
min-width: 100% !important;
direction: ltr !important;
text-align: center !important;
}
p,
.column_1_of_2 th p,
.column_2_of_2 th p,
.order_notes * {
text-align: center !important;
}
.line-item-description p {
text-align: left !important;
}
.line-item-price p,
.line-item-qty p,
.line-item-line-price p {
text-align: right !important;
}
h1, h2, h3,
.column_1_of_2 th,
.column_2_of_2 th {
text-align: center !important;
}
td.order-table-title {
text-align: center !important;
}
.section.products_with_pricing .table-title,
.section.products_with_refund .table-title,
.section.products_with_exchange .table-title,
.section.products_with_exchange_v2 .table-title {
width: 65% !important;
}
.section.products_with_pricing .table-text,
.section.products_with_refund .table-text,
.section.products_with_exchange .table-text,
.section.products_with_exchange_v2 .table-title {
width: 35% !important;
}
}
Thank you for your purchase. We will be in touch when your order is {% if pickup_in_store? %}ready for pickup{% else %}shipped{% endif %}.
Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ Νβ
{% capture default_utms %}utm_campaign=order-confirmation-email&utm_medium=email&utm_source=OrderlyEmails{% endcapture %}
{% capture question_mark %}?{% endcapture %}
{% if line_items != blank %}
{% assign hidden_variant_ids = "" %}
{% for line_item in line_items %}
{% if line_item.properties._boldVariantIds %}
{% assign hidden_variant_ids = hidden_variant_ids | append: ',' %}
{% assign hidden_variant_ids = hidden_variant_ids | append: line_item.properties._boldVariantIds %}
{% endif %}
{% endfor %}
{% endif %}
{% if note == blank and attributes == blank %}
{% else %}
{% endif %}
{% assign recommended_products = shop.metafields.orderlyemails.related_products %}
{% unless recommended_products == " " %}
{% assign recommended_products = recommended_products | split: "||product||" %}
{% assign current_line_items = "" %}
{% if line_items != blank %}
{% for line_item in line_items %}
{% assign current_line_items = current_line_items | append: line_item.product_id | append: "|" %}
{% endfor %}
{% endif %}
{% assign current_line_items = current_line_items | split: "|" %}
{% assign number_available = 0 %}
{% for product in recommended_products %}
{% assign product_details = product | split: "||prop||" %}
{% unless current_line_items contains product_details[1] %}
{% assign number_available = number_available | plus: 1 %}
{% endunless %}
{% endfor %}
{% assign rows_left = 0 %}
{% if number_available >= 2 %}{% assign rows_left = 1 %}{% endif %}
{% if number_available >= 4 %}{% assign rows_left = 2 %}{% endif %}
{% if rows_left > 0 %}
{% endif %}
{% endunless %}
|
{% if customer.first_name != blank or billing_address.first_name != blank %}
Dear
{{ customer.first_name | default: billing_address.first_name }},
{% endif %}
{% if custom_message != blank %}
{{ custom_message }}
{% endif %}
Thank you for your purchase. We will be in touch when your order is {% if pickup_in_store? %}ready for pickup{% else %}shipped{% endif %}.
|
|
|
{% if name != blank %}
Order No. {{ name }}
{{ created_at | date: "%B %d, %Y" }}
{% endif %}
|
{% for line_item in line_items %}
{% if line_item.quantity != 0 %}
{% capture line_variant_id1 %}{{ line_item.variant_id }}{% endcapture %}
{% assign adjusted_item_price = line_item.price | default: 0 %}
{% assign adjusted_line_price = line_item.line_price | default: 0 %}
{% assign adjusted_line_option_price = 0 %}
{% unless line_variant_id1 == blank %}
{% if hidden_variant_ids contains line_variant_id1 %}{% continue %}{% endif %}
{% for line_item2 in line_items %}
{% capture line_variant_id2 %}{{ line_item2.variant_id }}{% endcapture %}
{% if line_item.properties._boldVariantIds contains line_variant_id2 and line_item.properties._boldBuilderId == line_item2.properties._boldBuilderId %}
{% assign adjusted_item_price = adjusted_item_price | plus: line_item2.price %}
{% assign adjusted_line_option_price = line_item2.line_price %}
{% assign adjusted_line_price = adjusted_line_price | plus: adjusted_line_option_price %}
{% endif %}
{% endfor %}
{% endunless %}
{% unless forloop.last %}
{% endunless %}
{% endif %}
{% endfor %}
Items ordered
|
{% if line_item.image != blank %} {% endif %} |
{% if line_item.product != blank and line_item.product.title != blank %}
{% assign line_title = line_item.product.title %}
{% else %}
{% assign line_title = line_item.title %}
{% endif %}
|
{% if line_title == "Tip" %}Tip{% else %}{{ line_title }}{% endif %}
{% if line_item.variant.title != blank and line_item.variant.title != "Default Title" and line_item.variant.title != "Default" %}
{{ line_item.variant.title }}
{% endif %}
{% for p in line_item.properties %}
{% assign p_internal = p.first | slice: 0 %}
{% unless p.first contains "builder_id" or p.first contains "builder_info" or p.first contains "master_builder" or p.last == "" or p.last == blank %}
{% if p.first contains "preview" or p.last contains "/uploads/" or p.last contains "//uploadery.s3" %}
{{ p.first }}:
{% elsif p_internal != "_" %}
{{ p.first }}: {{ p.last }}
{% endif %}
{% endunless %}
{% endfor %}
{% if line_item.variant.unit_price_measurement != blank %}
({{ line_item.variant.unit_price | money }}{% if line_item.variant.unit_price_measurement.reference_value != 1 %} {{ line_item.variant.unit_price_measurement.reference_value }}{% endif %}/{{ line_item.variant.unit_price_measurement.reference_unit | capitalize }})
{% endif %}
|
x {{ line_item.quantity }}
|
{{ adjusted_line_price | money }}
|
|
|
|
{% assign displayable_discounts = false %}
{% for discount in discounts %}{% if discount.code != blank %}{% assign displayable_discounts = true %}{% break %}{% endif %}{% endfor %}
{% if discounts_amount != blank %}
{% if discounts_amount != 0.0 or displayable_discounts == true %}
{% endif %}
{% endif %}
{% if shipping_method.title != blank and shipping_method.price != 0.00 %}
{% endif %}
{% if current_total_duties and current_total_duties != 0.00 %}
{% endif %}
{% if total_tip and total_tip != 0.00 %}
{% endif %}
{% for tax_line in tax_lines %}
{% endfor %}
{% assign total_refunds = 0.00 %}
{% for transaction in transactions %}
{% if transaction.status == "success" and transaction.kind == "refund" %}
{% assign total_refunds = total_refunds | plus: transaction.amount %}
{% endif %}
{% endfor %}
{% if total_refunds != 0.00 %}
{% endif %}
|
Discount{% for discount in discounts %}{% if discount.code != blank and discount.code != 'Discount'%} ({{ discount.code }}){% endif %}{% endfor %} |
-{{ discounts_amount | default: 0 | money }} |
| Subtotal |
{{ subtotal_price | money }} |
| {{ shipping_method.title }} |
{{ shipping_method.price | money }} |
| Import duties |
{{ current_total_duties | money }} |
| Tip |
{{ total_tip | money }} |
| {{ tax_line.title }} ({{ tax_line.rate | times: 100}}%) |
{{ tax_line.price | money }} |
| Total |
{{ total_price | money }} |
| Refund |
-{{ total_refunds | money }} |
|
|
{% assign transaction_size = 0 %}
{% assign pending_gateway = "" %}
{% for transaction in transactions %}
{% if transaction.kind == "authorization" or transaction.kind == "void" or kind == "emv_authorization" or transaction.status == "failure" or transaction.status == "error" %}
{% continue %}
{% endif %}
{% assign transaction_size = transaction_size | plus: 1 %}
{% endfor %}
{% if transaction_size > 0 %}
{% for transaction in transactions %}
{% assign card = null %}
{% assign kind = transaction.kind %}
{% assign status = transaction.status %}
{% assign gateway = transaction.gateway_display_name %}
{% if kind == "authorization" or kind == "void" or kind == "emv_authorization" or status == "failure" or status == "error" or gateway == pending_gateway %}
{% continue %}
{% endif %}
{% if status == "pending" %}
{% assign pending_gateway = gateway %}
{% endif %}
{% if transaction.payment_details != blank and transaction.payment_details.credit_card_company != blank and transaction.payment_details.credit_card_company != "unknown" %}
{% assign payment = transaction.payment_details.credit_card_company %}
{% assign card = transaction.payment_details.credit_card_number %}
{% else %}
{% assign payment = gateway %}
{% endif %}
{% assign paymentTypeLower = payment | downcase %}
{% assign transaction_img = '' %}
{% if paymentTypeLower contains 'store credit' %}
{% assign transaction_img = 'mobile-receipt-storecredit.png' %}
{% elsif paymentTypeLower contains 'visa' %}
{% assign transaction_img = 'mobile-receipt-visa.png' %}
{% elsif paymentTypeLower contains 'mastercard' %}
{% assign transaction_img = 'mobile-receipt-mastercard.png' %}
{% elsif paymentTypeLower contains 'amex' or paymentTypeLower contains 'american express' %}
{% assign transaction_img = 'mobile-receipt-amex.png' %}
{% elsif paymentTypeLower contains 'discover' %}
{% assign transaction_img = 'mobile-receipt-discover.png' %}
{% elsif paymentTypeLower contains 'diners club' %}
{% assign transaction_img = 'mobile-receipt-dinersclub.png' %}
{% elsif paymentTypeLower contains 'jcb' %}
{% assign transaction_img = 'mobile-receipt-jcb.png' %}
{% elsif paymentTypeLower contains 'debit' %}
{% assign transaction_img = 'mobile-receipt-debit.png' %}
{% elsif paymentTypeLower contains 'gift card' %}
{% assign transaction_img = 'mobile-receipt-giftcard.png' %}
{% elsif paymentTypeLower contains 'cash' %}
{% assign transaction_img = 'mobile-receipt-cash.png' %}
{% elsif paymentTypeLower contains 'paypal' %}
{% assign transaction_img = 'mobile-receipt-paypal.png' %}
{% elsif paymentTypeLower contains 'dela upp. klarna' %}
{% assign transaction_img = 'mobile-receipt-klarna-slice-it.png' %}
{% elsif paymentTypeLower contains 'fΓ₯ fΓΆrst. betala sen. klarna' or paymentTypeLower contains 'klarna' %}
{% assign transaction_img = 'mobile-receipt-klarna-pay-later.png' %}
{% elsif paymentTypeLower contains 'mondido' %}
{% assign transaction_img = 'mobile-receipt-mondido-payments.png' %}
{% elsif paymentTypeLower contains 'ideal' %}
{% assign transaction_img = 'mobile-receipt-ideal.png' %}
{% elsif paymentTypeLower contains 'bogus' %}
{% assign transaction_img = 'mobile-receipt-bogus.png' %}
{% else %}
{% assign transaction_img = 'mobile-receipt-cash.png' %}
{% endif %}
{% endfor %}
{% endif %}
Payment Info
|
{% if transaction_img != '' %} {% endif %}
|
{% if kind == 'change' %}
Change
{% else %}
{{ payment }}
{% endif %}
{% if card %}
({{ card | replace: " ", "" | replace: "β’", "" }})
{% endif %}
|
|
{% if kind == 'refund' %}-{% endif%}{{ transaction.amount | money }}
|
|
{% if shipping_address != blank or attributes.Checkout-Method == "pickup" %}
{% if attributes.Checkout-Method == "delivery" %}
{% if attributes.Delivery-Date %}
{% endif %}
{% if attributes.Delivery-Time %}
{% endif %}
{% elsif attributes.Checkout-Method == "pickup" %}
{% if attributes.Pickup-Date %}
{% endif %}
{% if attributes.Pickup-Time %}
{% endif %}
{% elsif shipping_address != blank %}
{% if attributes.Shipping-Date %}
{% endif %}
{% else %}
{% endif %}
{% else %}
{% if billing_address != blank or customer.default_address != blank or customer.name != blank or customer.email != blank %}
{% endif %}
{% endif %}
Delivery Address
|
|
{%- if shipping_address and shipping_address != blank -%}
{{ shipping_address.name }}
{%- if shipping_address.company != blank -%}
{{ shipping_address.company }}
{%- endif -%}
{{ shipping_address.address1 }}
{%- if shipping_address.address2 != blank -%}
{{ shipping_address.address2 }}
{%- endif -%}
{{ shipping_address.city }}, {% if shipping_address.province_code != blank -%}{{ shipping_address.province_code }}{% else -%}{{ shipping_address.province }}{%- endif %} {{ shipping_address.zip | upcase }}
{%- if shipping_address.country != shop.country -%}{{ shipping_address.country }}{%- endif -%}
{%- if shipping_address.phone != blank -%} Tel. {{ shipping_address.phone }}
{%- endif -%}
{%- endif -%}
|
Delivery Date
|
|
{{ attributes.Delivery-Date | date: "%B %d, %Y" }}
|
Delivery Time
|
|
{{ attributes.Delivery-Time }}
|
Pickup Address
|
|
{% if attributes.Pickup-Location-Company %}{{ attributes.Pickup-Location-Company }}
{% endif %}{{ attributes.Pickup-Location-Address-Line-1 }}{% if attributes.Pickup-Location-Address-Line-2 %}
{{ attributes.Pickup-Location-Address-Line-2 }}{% endif %}
{{ attributes.Pickup-Location-City }}
{{ attributes.Pickup-Location-Region }}
{{ attributes.Pickup-Location-Postal-Code }}
{{ attributes.Pickup-Location-Country }}
|
Pickup Date
|
|
{{ attributes.Pickup-Date | date: "%B %d, %Y" }}
|
Pickup Time
|
|
{{ attributes.Pickup-Time }}
|
Shipping Address
|
|
{%- if shipping_address and shipping_address != blank -%}
{{ shipping_address.name }}
{%- if shipping_address.company != blank -%}
{{ shipping_address.company }}
{%- endif -%}
{{ shipping_address.address1 }}
{%- if shipping_address.address2 != blank -%}
{{ shipping_address.address2 }}
{%- endif -%}
{{ shipping_address.city }}, {% if shipping_address.province_code != blank -%}{{ shipping_address.province_code }}{% else -%}{{ shipping_address.province }}{%- endif %} {{ shipping_address.zip | upcase }}
{%- if shipping_address.country != shop.country -%}{{ shipping_address.country }}{%- endif -%}
{%- if shipping_address.phone != blank -%} Tel. {{ shipping_address.phone }}
{%- endif -%}
{%- endif -%}
|
Shipping Date
|
|
{{ attributes.Shipping-Date | date: "%B %d, %Y" }}
|
|
|
Customer
|
|
{%- assign billing_address = billing_address | default: customer.default_address -%}
{%- if billing_address and billing_address != blank -%}
{{ billing_address.name }}
{%- if billing_address.company != blank -%}
{{ billing_address.company }}
{%- endif -%}
{{ billing_address.address1 }}
{%- if billing_address.address2 != blank -%}
{{ billing_address.address2 }}
{%- endif -%}
{{ billing_address.city }}, {% if billing_address.province_code != blank -%}{{ billing_address.province_code }}{% else -%}{{ billing_address.province }}{%- endif %} {{ billing_address.zip | upcase }}
{%- if billing_address.country != shop.country -%}{{ billing_address.country }}
{%- endif -%}{%- if billing_address.phone != blank -%} Tel. {{ billing_address.phone }}
{%- endif -%}
{%- elsif customer != blank -%}
{% if customer.name != blank %}{{ customer.name }}
{%- endif -%}
{%- endif -%}
{{ email }}
|
|
{% if shipping_address != blank or attributes.Checkout-Method == "pickup" %}
{% if billing_address != blank or customer.default_address != blank or customer.name != blank or customer.email != blank %}
{% endif %}
{% else %}
{% if attributes.Checkout-Method == "delivery" %}
{% if attributes.Delivery-Date %}
{% endif %}
{% if attributes.Delivery-Time %}
{% endif %}
{% elsif attributes.Checkout-Method == "pickup" %}
{% if attributes.Pickup-Date %}
{% endif %}
{% if attributes.Pickup-Time %}
{% endif %}
{% elsif shipping_address != blank %}
{% if attributes.Shipping-Date %}
{% endif %}
{% else %}
{% endif %}
{% endif %}
Customer
|
|
{%- assign billing_address = billing_address | default: customer.default_address -%}
{%- if billing_address and billing_address != blank -%}
{{ billing_address.name }}
{%- if billing_address.company != blank -%}
{{ billing_address.company }}
{%- endif -%}
{{ billing_address.address1 }}
{%- if billing_address.address2 != blank -%}
{{ billing_address.address2 }}
{%- endif -%}
{{ billing_address.city }}, {% if billing_address.province_code != blank -%}{{ billing_address.province_code }}{% else -%}{{ billing_address.province }}{%- endif %} {{ billing_address.zip | upcase }}
{%- if billing_address.country != shop.country -%}{{ billing_address.country }}
{%- endif -%}{%- if billing_address.phone != blank -%} Tel. {{ billing_address.phone }}
{%- endif -%}
{%- elsif customer != blank -%}
{% if customer.name != blank %}{{ customer.name }}
{%- endif -%}
{%- endif -%}
{{ email }}
|
Delivery Address
|
|
{%- if shipping_address and shipping_address != blank -%}
{{ shipping_address.name }}
{%- if shipping_address.company != blank -%}
{{ shipping_address.company }}
{%- endif -%}
{{ shipping_address.address1 }}
{%- if shipping_address.address2 != blank -%}
{{ shipping_address.address2 }}
{%- endif -%}
{{ shipping_address.city }}, {% if shipping_address.province_code != blank -%}{{ shipping_address.province_code }}{% else -%}{{ shipping_address.province }}{%- endif %} {{ shipping_address.zip | upcase }}
{%- if shipping_address.country != shop.country -%}{{ shipping_address.country }}{%- endif -%}
{%- if shipping_address.phone != blank -%} Tel. {{ shipping_address.phone }}
{%- endif -%}
{%- endif -%}
|
Delivery Date
|
|
{{ attributes.Delivery-Date | date: "%B %d, %Y" }}
|
Delivery Time
|
|
{{ attributes.Delivery-Time }}
|
Pickup Address
|
|
{% if attributes.Pickup-Location-Company %}{{ attributes.Pickup-Location-Company }}
{% endif %}{{ attributes.Pickup-Location-Address-Line-1 }}{% if attributes.Pickup-Location-Address-Line-2 %}
{{ attributes.Pickup-Location-Address-Line-2 }}{% endif %}
{{ attributes.Pickup-Location-City }}
{{ attributes.Pickup-Location-Region }}
{{ attributes.Pickup-Location-Postal-Code }}
{{ attributes.Pickup-Location-Country }}
|
Pickup Date
|
|
{{ attributes.Pickup-Date | date: "%B %d, %Y" }}
|
Pickup Time
|
|
{{ attributes.Pickup-Time }}
|
Shipping Address
|
|
{%- if shipping_address and shipping_address != blank -%}
{{ shipping_address.name }}
{%- if shipping_address.company != blank -%}
{{ shipping_address.company }}
{%- endif -%}
{{ shipping_address.address1 }}
{%- if shipping_address.address2 != blank -%}
{{ shipping_address.address2 }}
{%- endif -%}
{{ shipping_address.city }}, {% if shipping_address.province_code != blank -%}{{ shipping_address.province_code }}{% else -%}{{ shipping_address.province }}{%- endif %} {{ shipping_address.zip | upcase }}
{%- if shipping_address.country != shop.country -%}{{ shipping_address.country }}{%- endif -%}
{%- if shipping_address.phone != blank -%} Tel. {{ shipping_address.phone }}
{%- endif -%}
{%- endif -%}
|
Shipping Date
|
|
{{ attributes.Shipping-Date | date: "%B %d, %Y" }}
|
|
|
|
|
|
|
Order Notes
{% if note != blank %}{{ note | newline_to_br }}{% endif %}
|
|
|
| You can follow the status of your order by clicking the button below:
|
|
|
|
You May Also Like
|
|
{% for product in recommended_products %}
{% assign product_details = product | split: "||prop||" %}
{% if current_line_items contains product_details[1] %}
{% continue %}
{% endif %}
{% unless rows_left == 0 %}
{% capture thecycle %}{% cycle '1', '2' %}{% endcapture %}
{% if thecycle == '1' %}
{% endif %}
{% if thecycle == '2' %}
{% assign rows_left = rows_left | minus: 1 %}
{% endif %}
{% endunless %}
{% endfor %}
|
|
|
Questions regarding your order? Send an email to concierge@studiohcollection.com or give us a call at 619.230.5343.
|
|
Many thanks,
Studio H Collection
|
|
|
|
|
|