Atualizar a notificação de fatura do pedido por e-mail para trocas
Caso a loja use modelos de notificação personalizados , talvez seja necessário atualizar a notificação por e-mail Fatura do pedido manualmente para garantir o funcionamento correto quando você adicionar itens de troca a uma devolução .
Essas alterações exigem familiaridade com o código usado nos modelos de notificação da Shopify. Se os modelos forem altamente personalizados e você não tiver certeza de como aplicar as alterações necessárias, entre em contato com o desenvolvedor responsável ou clique em Reverter para o padrão para restaurá-los ao estado original. Ao fazer a reversão para o padrão, todas as suas personalizações serão removidas, mas o modelo padrão garantirá que você tenha sua versão mais atual.
Aviso
Antes de fazer alterações, guarde uma cópia do modelo como backup no Google Docs, por exemplo. Para isso, basta copiar e colar o conteúdo em um documento. Antes de clicar em Salvar , clique em Pré-visualizar para revisar as alterações e garantir que elas funcionam conforme o esperado.
Atualizar a notificação por e-mail da Fatura do pedido Você pode atualizar a notificação Fatura do pedido com um novo bloco de código de alterações de item de linha, que adiciona status de itens de linha para identificar itens de devolução e troca no resumo do pedido.
No admin da Shopify, acesse Configurações > Notificações .
Clique em Notificações ao cliente .
Na seção Exceções do pedido , clique em Fatura do pedido .
Clique em Editar código .
Localize o bloco de código de alterações de item de linha padrão .
Copie o novo bloco de código de alterações de item de linha e substitua o bloco de código padrão pelo novo.
Clique em Salvar .
Bloco de código de alterações de item de linha padrão <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>
Novo bloco de código de alterações de item de linha {% 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 %}