В версии 1.3 изменился порядок работы модулей оплаты при разных валютах
Где искать решение не подскажешь.
В файле payment_execution.tpl изменить строку
Цитата:
{l s='Choose one of the following:' mod='westernunion'}
<select id="currency_payement" name="currency_payement" onchange="showElemFromSelect('currency_payement', 'amount_')">
{foreach from=$currencies item=currency}
<option value="{$currency.id_currency}" {if $currency.id_currency == $cust_currency}selected="selected"{/if}>{$currency.name}</option>
{/foreach}
</select>
<script language="javascript">showElemFromSelect('currency_payement', 'amount_');</script>
{else}
{l s='We accept the following currency to be sent by western union:' mod='westernunion'} <b>{$currencies.0.name}</b>
<input type="hidden" name="currency_payement" value="{$currencies.0.id_currency}">
на эту
Цитата:
{l s='Choose one of the following:' mod='westernunion'}
<select id="currency_payement" name="currency_payement" onchange="setCurrency($('#currency_payement').val());">
{foreach from=$currencies item=currency}
<option value="{$currency.id_currency}" {if $currency.id_currency == $cust_currency}selected="selected"{/if}>{$currency.name}</option>
{/foreach}
</select>
<script language="javascript">showElemFromSelect('currency_payement', 'amount_');</script>
{else}
{l s='We accept the following currency to be sent by western union:' mod='westernunion'} <b>{$currencies.0.name}</b>
<input type="hidden" name="currency_payement" value="{$currencies.0.id_currency}">
Работает на версии 1.3.5 проверьте и НЕ забывайте отписатса
Сообщение отредактировано geomagi 04-02-2011 19:23 ...