Reputation: 5496
If I do this in a custom module:
<div class="product-price-and-shipping">
<span class="price">
{Tools::displayPrice($product.price)}
</span>
</div>
I get the price without taxes (+21% VAT).
How can I get the product price with taxes included (+21% VAT)
Upvotes: 0
Views: 5408
Reputation: 1311
You must have a rule or a php misbehaviour somewhere because it's $product.price for full price and $product.price_tax_exc without VAT for product lists.
Upvotes: 1