fix: Show totals instead of prices
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,2 +1,4 @@
|
|||||||
|
|
||||||
is_shoppingcart/vendor/
|
is_shoppingcart/vendor/
|
||||||
|
|
||||||
|
*.zip
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<span class="price price--sm">
|
<span class="price price--sm">
|
||||||
{$product.price}
|
{$product.total}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="cart-products__remove">
|
<div class="cart-products__remove">
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
<p class="h6 mb-2 font-sm">
|
<p class="h6 mb-2 font-sm">
|
||||||
{$product.name}
|
{$product.name}
|
||||||
</p>
|
</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"}
|
{hook h='displayProductPriceBlock' product=$product type="unit_price"}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user