App reviews, troubleshooting, and recommendations
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I have installed the Updated Order Printer App. I want to display "Local Pickup" on the Packing Slip if an order's delivery method is Local pickup. Shopify support was no help. They said contact the community for support. Can anyone help. It would be greatly appreciated.
Solved! Go to the solution
This is an accepted solution.
Here's the code that I use on my packing slip. Hope it works for you.
{% if order.shipping_method.title != blank %}
<li class="order-details-shipping">
<span class="order-details-title editable" data-key="shipping_method">Shipping Method:</span>
<span class="order-details-text">{{ order.shipping_method.title }}</span>
</li>
{% endif %}
Cheers,
Marcel
Mascot Label Group
This is an accepted solution.
Here's the code that I use on my packing slip. Hope it works for you.
{% if order.shipping_method.title != blank %}
<li class="order-details-shipping">
<span class="order-details-title editable" data-key="shipping_method">Shipping Method:</span>
<span class="order-details-text">{{ order.shipping_method.title }}</span>
</li>
{% endif %}
Cheers,
Marcel
Mascot Label Group
Hi Marcel,
That is amazing thank you so much. If I may ask another question:-
The following piece of code was working perfect on (Legacy). But it is no longer working.
{% for tag in tags %}
<strong style="font-size: 1.5em;">{% if tag == 'Wholesale'%}{{order.tags}}{% endif %}</strong>
{% endfor %}
Any help is greatly appreciated
Hi, just THANK YOU! I've been looking for a working code for so long!
Not all heroes wear capes! 😂