Tilauksen lasku -sähköposti-ilmoituksen päivitys vaihtoja varten
Jos kauppasi käyttää mukautettuja ilmoitusmalleja , saatat joutua päivittämään Tilauksen lasku -sähköposti-ilmoituksen manuaalisesti varmistaaksesi, että se toimii, kun lisäät vaihtotuotteita palautukseen .
Nämä muutokset edellyttävät Shopifyn ilmoitusmalleissa käytettävän koodin tuntemista. Jos mallisi ovat erittäin mukautettuja etkä ole varma, miten tarvittavat muutokset tehdään, ota yhteyttä muutokset tehneeseen kehittäjään tai klikkaa Palauta oletusarvoon palauttaaksesi mallin alkuperäiseen tilaansa. Oletusarvoon palauttaminen poistaa kaikki tekemäsi mukautukset, mutta oletusmalli varmistaa, että mallisi on uusin versio.
Huomio
Ennen kuin teet muutoksia, ota mallista varmuuskopio ja liitä se toiseen asiakirjaan, kuten Google Docs -asiakirjaan. Kun olet tehnyt muutoksia, tarkista ne klikkaamalla Esikatselu ja varmista, että ne toimivat odotetulla tavalla ennen kuin klikkaat Tallenna .
Tilauksen lasku -sähköposti-ilmoituksen päivitys Voit päivittää Tilauksen lasku -ilmoituksen uudella rivikohdan muutosten koodilohkolla. Tämä koodilohko lisää rivikohdan tilat palautus- ja vaihtotuotteiden määrittämiseksi tilauksen yhteenvedossa.
Siirry Shopifyn Admin-sivulla kohtaan Asetukset > Ilmoitukset .
Klikkaa Asiakkaan ilmoitukset .
Klikkaa Tilauspoikkeukset -osiossa Tilauksen lasku .
Napsauta Muokkaa koodia .
Etsi rivikohdan muutosten oletuskoodilohko .
Kopioi uusi rivikohdan muutosten koodilohko ja korvaa oletuskoodilohko uudella lohkolla.
Klikkaa Tallenna .
Rivikohdan muutosten oletuskoodilohko <table class= "row" >
{% for line in subtotal_line_items %}
<tr class= "order-list__item" >
<td class= "order-list__item__cell" >
<table>
<td>
{% if line.image %}
<img src= "{{ line | img_url: 'compact_cropped' }}" align= "left" width= "60" height= "60" class= "order-list__product-image" />
{% endif %}
</td>
<td class= "order-list__product-description-cell" >
{% if line.product.title %}
{% assign line_title = line.product.title %}
{% else %}
{% assign line_title = line.title %}
{% endif %}
{% if line.quantity < line.quantity %}
{% capture line_display %} {{ line.quantity }} of {{ line.quantity }} {% endcapture %}
{% else %}
{% assign line_display = line.quantity %}
{% endif %}
< span class= "order-list__item-title" > {{ line_title }} × {{ line_display }}</span><br/>
{% if line.variant.title != 'Default Title' %}
<span class= "order-list__item-variant" > {{ line.variant.title }}</span><br/>
{% endif %}
{% for group in line.groups %}
<span class= "order-list__item-variant" > Part of: {{ group.display_title }}</span><br/>
{% endfor %}
{% if line.gift_card and line.properties["__shopify_send_gift_card_to_recipient"] %}
{% for property in line.properties %}
{% assign property_first_char = property.first | slice: 0 %}
{% if property.last != blank and property_first_char != '_' %}
<div class= "order-list__item-property" >
<dt> {{ property.first }}:</dt>
<dd>
{% if property.last contains '/uploads/' %}
<a href= "{{ property.last }}" class= "link" target= "_blank" >
{{ property.last | split: '/' | last }}
</a>
{% else %}
{{ property.last }}
{% endif %}
</dd>
</div>
{% endif %}
{% endfor %}
{% endif %}
{% if line.selling_plan_allocation %}
<span class= "order-list__item-variant" > {{ line.selling_plan_allocation.selling_plan.name }}</span><br/>
{% endif %}
{% if line.refunded_quantity > 0 %}
<span class= "order-list__item-refunded" > Refunded</span>
{% endif %}
{% if line.discount_allocations %}
{% for discount_allocation in line.discount_allocations %}
{% if discount_allocation.discount_application.target_selection != 'all' %}
<p>
<span class= "order-list__item-discount-allocation" >
<img src= "{{ 'notifications/discounttag.png' | shopify_asset_url }}" width= "18" height= "18" class= "discount-tag-icon" />
<span>
{{ discount_allocation.discount_application.title | upcase }}
(-{{ discount_allocation.amount | money }})
</span>
</span>
</p>
{% endif %}
{% endfor %}
{% endif %}
</td>
<td class= "order-list__price-cell" >
{% if line.original_line_price != line.final_line_price %}
<del class= "order-list__item-original-price" > {{ line.original_line_price | money }}</del>
{% endif %}
<p class= "order-list__item-price" >
{% if line.final_line_price > 0 %}
{{ line.final_line_price | money }}
{% else %}
Free
{% endif %}
</p>
</td>
</table>
</td>
</tr> {% endfor %}
</table>
Uusi rivikohdan muutosten koodilohko {% if line_items_including_zero_quantity == empty %}
<table class="row">
{% for line in subtotal_line_items %}
<tr class="order-list__item">
<td class="order-list__item__cell">
<table>
<td>
{% if line . image %}
<img src="{{ line | img_url : 'compact_cropped' }} " align="left" width="60" height="60" class="order-list__product-image"/>
{% endif %}
</td>
<td class="order-list__product-description-cell">
{% if line . product . title %}
{% assign line_title = line . product . title %}
{% else %}
{% assign line_title = line . title %}
{% endif %}
{% if line . quantity < line . quantity %}
{% capture line_display %} {{ line . quantity }} of {{ line . quantity }} {% endcapture %}
{% else %}
{% assign line_display = line . quantity %}
{% endif %}
<span class="order-list__item-title">{{ line_title }} × {{ line_display }} </span><br/>
{% if line . variant . title != 'Default Title' %}
<span class="order-list__item-variant">{{ line . variant . title }} </span><br/>
{% endif %}
{% for group in line . groups %}
<span class="order-list__item-variant">Part of: {{ group . display_title }} </span><br/>
{% endfor %}
{% if line . gift_card and line . properties [ "__shopify_send_gift_card_to_recipient" ] %}
{% for property in line . properties %}
{% assign property_first_char = property . first | slice : 0 %}
{% if property . last != blank and property_first_char != '_' %}
<div class="order-list__item-property">
<dt>{{ property . first }} :</dt>
<dd>
{% if property . last contains '/uploads/' %}
<a href="{{ property . last }} " class="link" target="_blank">
{{ property . last | split : '/' | last }}
</a>
{% else %}
{{ property . last }}
{% endif %}
</dd>
</div>
{% endif %}
{% endfor %}
{% endif %}
{% if line . selling_plan_allocation %}
<span class="order-list__item-variant">{{ line . selling_plan_allocation . selling_plan . name }} </span><br/>
{% endif %}
{% if line . item_updates . size > 0 %}
<span class="order-list__item-update-status">{{ line . item_updates [ 0 ] }} </span>
{% elsif line . refunded_quantity > 0 %}
<span class="order-list__item-refunded">Refunded</span>
{% endif %}
{% if line . discount_allocations %}
{% for discount_allocation in line . discount_allocations %}
{% if discount_allocation . discount_application . target_selection != 'all' %}
<p>
<span class="order-list__item-discount-allocation">
<img src="{{ 'notifications/discounttag.png' | shopify_asset_url }} " width="18" height="18" class="discount-tag-icon" />
<span>
{{ discount_allocation . discount_application . title | upcase }}
(-{{ discount_allocation . amount | money }} )
</span>
</span>
</p>
{% endif %}
{% endfor %}
{% endif %}
</td>
<td class="order-list__price-cell">
{% if line . original_line_price != line . final_line_price %}
<del class="order-list__item-original-price">{{ line . original_line_price | money }} </del>
{% endif %}
<p class="order-list__item-price">
{% if line . final_line_price > 0 or line . quantity == 0 %}
{{ line . final_line_price | money }}
{% else %}
Free
{% endif %}
</p>
</td>
</table>
</td>
</tr>{% endfor %}
</table>
{% else %}
<table class="row">
{% for line in line_items_including_zero_quantity %}
<tr class="order-list__item">
<td class="order-list__item__cell">
<table>
<td>
{% if line . image %}
<img src="{{ line | img_url : 'compact_cropped' }} " align="left" width="60" height="60" class="order-list__product-image"/>
{% endif %}
</td>
<td class="order-list__product-description-cell">
{% if line . product . title %}
{% assign line_title = line . product . title %}
{% else %}
{% assign line_title = line . title %}
{% endif %}
{% if line . quantity < line . quantity %}
{% capture line_display %} {{ line . quantity }} of {{ line . quantity }} {% endcapture %}
{% else %}
{% assign line_display = line . quantity %}
{% endif %}
<span class="order-list__item-title">{{ line_title }} × {{ line_display }} </span><br/>
{% if line . variant . title != 'Default Title' %}
<span class="order-list__item-variant">{{ line . variant . title }} </span><br/>
{% endif %}
{% for group in line . groups %}
<span class="order-list__item-variant">Part of: {{ group . display_title }} </span><br/>
{% endfor %}
{% if line . gift_card and line . properties [ "__shopify_send_gift_card_to_recipient" ] %}
{% for property in line . properties %}
{% assign property_first_char = property . first | slice : 0 %}
{% if property . last != blank and property_first_char != '_' %}
<div class="order-list__item-property">
<dt>{{ property . first }} :</dt>
<dd>
{% if property . last contains '/uploads/' %}
<a href="{{ property . last }} " class="link" target="_blank">
{{ property . last | split : '/' | last }}
</a>
{% else %}
{{ property . last }}
{% endif %}
</dd>
</div>
{% endif %}
{% endfor %}
{% endif %}
{% if line . selling_plan_allocation %}
<span class="order-list__item-variant">{{ line . selling_plan_allocation . selling_plan . name }} </span><br/>
{% endif %}
{% if line . item_updates . size > 0 %}
<span class="order-list__item-update-status">{{ line . item_updates [ 0 ] }} </span>
{% elsif line . refunded_quantity > 0 %}
<span class="order-list__item-refunded">Refunded</span>
{% endif %}
{% if line . discount_allocations %}
{% for discount_allocation in line . discount_allocations %}
{% if discount_allocation . discount_application . target_selection != 'all' %}
<p>
<span class="order-list__item-discount-allocation">
<img src="{{ 'notifications/discounttag.png' | shopify_asset_url }} " width="18" height="18" class="discount-tag-icon" />
<span>
{{ discount_allocation . discount_application . title | upcase }}
(-{{ discount_allocation . amount | money }} )
</span>
</span>
</p>
{% endif %}
{% endfor %}
{% endif %}
</td>
<td class="order-list__price-cell">
{% if line . original_line_price != line . final_line_price %}
<del class="order-list__item-original-price">{{ line . original_line_price | money }} </del>
{% endif %}
<p class="order-list__item-price">
{% if line . final_line_price > 0 or line . quantity == 0 %}
{{ line . final_line_price | money }}
{% else %}
Free
{% endif %}
</p>
</td>
</table>
</td>
</tr>{% endfor %}
</table>
{% endif %}