OrderShippingMethod
The order_shipping_method object describes a shipping method used for an order.
{%- comment -%} Show shipping method details {%- endcomment -%}
{% for method in order.shipping_methods %}
<div>{{ method.title }}: {{ method.price | money }}</div>
{% endfor %}title
Returns the title.
type
Returns the type.
pickup_availability
Returns the pickup availability as a string if it’s available.
pickup_address
Returns the pickup address.
info
Returns additional information about the shipping method.
description
Returns the description.
rate
Returns the tax rate in decimals.
rate_percentage
Returns the tax rate.
net_price
Returns the shipping price without tax.
tax
Returns the tax amount.
price
Returns the shipping price.