как бы я знала,зачем мне этот мусор, я же не программист))) но! кнопку сделала уже)))Спасибо Вам всё равно. А вот и кнопка:
./public_html/catalog/view/theme/.../template/product/product.tpl:
<input type="button" class="button" value="Купить" id="oneclickbuy">(это сама кнопка)
и ниже, где аяксы:
$('#oneclickbuy').bind('click', function() {
$.ajax({
url: 'index.php?
route=checkout/cart/add',
type: 'post',
data: $('.product-info input[type=\'text\'], .product-info
input[type=\'hidden\'], .product-info input[type=\'radio\']:checked, .product-info input[type=\'checkbox\']:checked,
.product-info select, .product-info textarea'),
dataType: 'json',
success: function(json) {
$('.success, .warning, .attention, information, .error').remove();
if
(json['error']) {
if (json['error']['option']) {
for (i in
json['error']['option']) {
$('#option-' + i).append('<span class="error">' +
json['error']['option'] + '</span>');
}
}
}
if (json['success']) {
window.location="ссылка";
$('#cart-
total').html(json['total']);
getCartMobile();
}
}
});
});
здесь мусора нет?