В вашем ИМ используется шаблон от PrestaShop 1.5 (приведенный выше код был для стандартных шаблонов версии PrestaShop 1.6).
Для вашего шаблона в файле product.tpl после:
Код:
available_date['date_formatted'] = '{dateFormat date=$combination.available_date full=false}';
добавьте подобный код:
Код:
specific_price_combination['wholesale_price'] = {if $combination.wholesale_price AND $combination.wholesale_price > 0}{$combination.wholesale_price}{else}0{/if};
2. В
/themes/тема/js/product.js после:
Код:
$('#old_price_display').text(formatCurrency(productPriceWithoutReductionDisplay, currencyFormat, currencySign, currencyBlank));
используйте подобный код:
Код:
if (typeof selectedCombination.specific_price['wholesale_price'] != 'undefined' && selectedCombination.specific_price['wholesale_price'] > 0)
$('#wholesale_price').text(formatCurrency(parseFloat(selectedCombination.specific_price['wholesale_price']), currencyFormat, currencySign, currencyBlank)).show();
else
$('#wholesale_price').hide();