Shipping

{{ cart.shipping_method.name }}
{% for method in __SELF__.shippingMethods %} {% set isActiveMethod = cart.shipping_method.id == method.id %}

{{ method.name }}

{% if method.guaranteed_delivery_days %}

{% set days = method.guaranteed_delivery_days %} {{ 'offline.mall::frontend.shipping_method.guaranteed_delivery_days' | transchoice(days, {days: days}) }}

{% endif %}
{{ method.price().integer > 0 ? (method.price().string | raw) : ('offline.mall::frontend.no_additional_charges' | trans) }}
{% if method.logo %} {% endif %}
{% else %}

No method available.

{% endfor %}