данный шаблон отвечает за вывод способов оплаты onepagecheckoutps_payment.tpl кодировка его utf8 (пробовал и другую без разницы)
в нем есть функция
function initPayment(){
if(!$.isEmpty(content_payments) && (content_payments).length){
var tbody = $("#table_payment tbody");
$.each(content_payments, function(i, module){
var module_html = $.base64.decode(module.html);
if($.isEmpty($.trim(module_html)) || module_html === false)
return;
var tmp = $('#opc_temporal').html(module_html);
if($.strpos(module_html, '<iframe')){
$('<input/>').val($.base64.encode(module_html)).attr({'id' : 'iframe_payment_module_' + module.id}).hide().prependTo('#onepagecheckoutps_contenedor');
createPaymentModule(module.id, module.name, module.name, '', module.url_image, 'iframe', '', tbody, null);
return;
}
вот она меня смущает base64.encode но я к сожалению в этом не селен!