βοΈHow to add fields to packing slip template?
PreviousHow to disable past dates , weekends, or specific dates on the Date Picker?NextHow can I show custom fields in the order confirmation email sent to CUSTOMERS?
Last updated
Last updated
//this is the code snippet for adding the inputs from customer to packing slip
{% for property in line_item.properties %}
{% assign property_first_char = property.first | slice: 0 %}
{% if property.last != blank and property_first_char != '_' %}
<span class="line-item-description-line">
{{ property.first }}: {{ property.last }}
</span>
{% endif %}
{% endfor %}