Если у вас Prestashop версиии 1.6 а шаблон версии 1.4 или 1.5 то в шаблоне вашей темы надо найти файл product.js и заменить в нём строчки
if (productPrice > 0) {
на
if (productPriceDisplay > 0) {
our_price = formatCurrency(productPrice, currencyFormat, currencySign, currencyBlank);
на
our_price = formatCurrency(productPriceDisplay, currencyFormat, currencySign, currencyBlank);
$('#old_price_display').text(formatCurrency(productPriceWithoutReduction, currencyFormat, currencySign, currencyBlank));
на
$('#old_price_display').text(formatCurrency(productPriceWithoutReductionDisplay, currencyFormat, currencySign, currencyBlank));