правим файл /themes/ваша тема/product-list.tpl
там где хотим что бы появились дополнителные цены вставляем
Код:
<span class="price" style="display: inline;">{convertPriceWithCurrency price=$product.price_1 currency=1}</span><br />
<span class="price" style="display: inline;">{convertPriceWithCurrency price=$product.price_2 currency=2}</span><br />
в файле /category.php ищем
Код:
$cat_products = $category->getProducts(intval($cookie->id_lang), intval($p), intval($n), $orderBy, $orderWay);
после этой строки вставляем
Код:
$ret_arr = array();
foreach ($cat_products as $cat_product) {
$curen_1 = new Currency(1);
$curen_2 = new Currency(2);
$cat_product['price_1'] = Tools::convertPrice($cat_product['price'],$curen_1);
$cat_product['price_2'] = Tools::convertPrice($cat_product['price'],$curen_2);
$ret_arr[] = $cat_product;
}
$cat_products = $ret_arr;
Currency(1) - первая валюта из админки
Currency(2) - вторая валюта из админки