現在、Open Cart 1.5.4 のプロジェクトに取り組んでいます。問題なくカートを別のdivに少し移動しました。問題は新しいコンピューター上にあり、サイトに初めてアクセスしたときに、顧客が製品をカートに追加することはできません。彼らが別のページに移動してから戻ると、問題なく機能します。javascript ファイルは問題なく適切に読み込まれます。
この説明が問題やバグをうまく説明してくれることを願っています。
前もって感謝します。
ジャバスクリプト
function addToCart(product_id, quantity) {
quantity = typeof(quantity) != 'undefined' ? quantity : 1;
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: 'product_id=' + product_id + '&quantity=' + quantity,
dataType: 'json',
success: function(json) {
$('.success, .warning, .attention, .information, .error').remove();
if (json['redirect']) {
location = json['redirect'];
}
if (json['success']) {
//$('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');
$('.success').fadeIn('slow');
try {
$('#cart-total').html(json['total']);
}
catch(err) {
console.log(err.message());
}
$('html, body').animate({ scrollTop: 0 }, 'slow');
$(".heading").animate({backgroundColor: "#FFFFFF"}, 'slow');
$(".cart_arrow").attr("style", "display: block;");
$(".heading").animate({backgroundColor: "#585858"}, 'slow');
}
}
});
}