From dc8ed97eb06b93f7975e42b76a697aec1a801f14 Mon Sep 17 00:00:00 2001 From: Isabelle Date: Tue, 10 Mar 2026 16:49:01 +0100 Subject: [PATCH] fix: add shipping cost info to cart summary --- falcon/templates/checkout/_partials/cart-summary-totals.tpl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/falcon/templates/checkout/_partials/cart-summary-totals.tpl b/falcon/templates/checkout/_partials/cart-summary-totals.tpl index cfadbed..b69d165 100644 --- a/falcon/templates/checkout/_partials/cart-summary-totals.tpl +++ b/falcon/templates/checkout/_partials/cart-summary-totals.tpl @@ -38,6 +38,11 @@ {$cart.totals.total.label} {if $configuration.display_taxes_label && $configuration.taxes_enabled}{$cart.labels.tax_short}{/if} {$cart.totals.total.value} + {if !$cart.has_delivery_address} +

+ {l s='Shipping costs will be calculated in the next step, before you checkout. Shipping costs depend on the country the order is shipped to. For the Netherlands, orders with a value of € 125.00 will be shipped free of charge. You can view the shippingcosts here' d='Shop.Checkout.Total'} +

+ {/if} {/if} {/block}