M.E.
M.E.

Reputation: 5496

Prestashop 1.7.1 - How to get product price with taxes (VAT)

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

Answers (1)

Matt Loye
Matt Loye

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

Related Questions