Best Answer SmetDenis , 30 June 2015 - 06:45
Прошу прощения. Почему то думал что речь идет о новой версии.
Решение для версии 2.1.5
Например, заменим Робокассу на форму Кассы.
В файле будет следующий код - jbuniversal\templates\catalog\renderer\payment_robox\_default.php
<?php // no direct access defined('_JEXEC') or die('Restricted access'); $view = $this->getView(); $data = $vars['object']; ?> <p style="height:36px;"><!--noindex--><a href="https://kassa.yandex.ru/" target="_blank" rel="nofollow"><img src="media/zoo/applications/jbuniversal/assets/img/payments/yandex.png"></a><!--/noindex--></p> <form action="https://money.yandex.ru/eshop.xml" method="post"> <input type="hidden" name="shopId" value="ИДЕНТИФИКАТОР_МАГАЗИНА_shopid"> <input type="hidden" name="scid" value="НОМЕР_ВИТРИНА_scid"> <input type="hidden" name="sum" value="<?php echo number_format($data->get('summ'), 2, '.', ''); ?>"> <input type="hidden" name="customerNumber" value="<?php echo 'UserID ' . JFactory::getUser()->id; ?>"> <input type="hidden" name="orderNumber" value="<?php echo $data->get('orderId'); ?>"> <input type="submit" style="display:inline-block;" class="add-to-cart" value="<?php echo JText::_('JBZOO_PAYMENT_BUTTON'); ?>"/> </form>Вместо этих переменных указать свои данные
- ИДЕНТИФИКАТОР_МАГАЗИНА_shopid
- НОМЕР_ВИТРИНА_scid
По адресу media/zoo/applications/jbuniversal/assets/img/payments/yandex.png
Положить иконку Яндекс.Кассы. Go to the full post