Prestashop Override - Better

return $original_price;

classes/Product.php has a method getPriceStatic() . prestashop override

// Append our custom text (only if not returning array) if (!$return_array) return $original_price . ' (Tax included)'; return $original_price; classes/Product

<?php // /override/classes/Product.php class Product extends ProductCore Go to Advanced Parameters &gt; Performance and click

Create /override/classes/Product.php

public static function getPriceStatic( $id_product, $usetax = true, $id_product_attribute = null, $decimals = 6, $divisor = null, $only_reduc = false, $usereduc = true, $quantity = 1, $force_associated_tax = false, $id_customer = null, $id_cart = null, $id_address_invoice = null, $id_address_delivery = null, $specific_price_output = null, $with_ecotax = true, $use_group_reduction = true, $id_country = null, $id_state = null, $id_currency = null, $group_reduction = null, $use_reduction = true, $reduction_type = false, $return_array = false ) // Get the original price using the parent method $original_price = parent::getPriceStatic( $id_product, $usetax, $id_product_attribute, $decimals, $divisor, $only_reduc, $usereduc, $quantity, $force_associated_tax, $id_customer, $id_cart, $id_address_invoice, $id_address_delivery, $specific_price_output, $with_ecotax, $use_group_reduction, $id_country, $id_state, $id_currency, $group_reduction, $use_reduction, $reduction_type, $return_array );

PrestaShop caches class indexes. Go to Advanced Parameters > Performance and click "Clear cache".