- After changing like this, the plugin just needs to change the `is_delivery_free` variable and it will display the free message.
- Plugins will be easier to change and do not need to change the cart template.
## 再現手順(Procedure)
## 関連情報 (Ref)
Delivery free plugin plugin
概要(Overview)
Plugin can not display free message [現在送料無料です。] without changing shopping cart template.
期待する内容(Expect) or 要望 (Requirement)
{% if is_delivery_free[cartKey] %} 現在送料無料です。 {% elseif BaseInfo.delivery_free_amount and BaseInfo.delivery_free_quantity %} あと「{{ least[cartKey]|price }}」または「{{ quantity[cartKey]|number_format }}個」のお買い上げで送料無料になります。 {% elseif BaseInfo.delivery_free_amount %} あと「{{ least[cartKey]|price }}」のお買い上げで送料無料になります。 {% elseif BaseInfo.delivery_free_quantity %} あと「{{ quantity[cartKey]|number_format }}個」のお買い上げで送料無料になります。 {% endif %}