fix: Show totals instead of prices

This commit is contained in:
2026-04-23 15:38:15 +02:00
parent 8eb9b6a526
commit dfdf818af9
3 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,4 @@
is_shoppingcart/vendor/
*.zip

View File

@@ -46,7 +46,7 @@
</ul>
<span class="price price--sm">
{$product.price}
{$product.total}
</span>
</div>
<div class="cart-products__remove">

View File

@@ -20,7 +20,7 @@
<p class="h6 mb-2 font-sm">
{$product.name}
</p>
<div class="price price--sm">{$product.price}</div>
<div class="price price--sm">{$product.total}</div>
{hook h='displayProductPriceBlock' product=$product type="unit_price"}
</div>
</div>