Ücretli olarak bu tür sorunlarımı çözecek kişiler yazabilir.
function post_cart(that, success)
{
$.get({
url: '/cart_controller/update_cart_product_quantity',
method: 'POST',
data: {
<?=$this->security->get_csrf_token_name()?>: "<?=$this->security->get_csrf_hash()?>",
product_id: $(that).parent().parent().find('input').data('product-id'),
cart_item_id: $(that).parent().parent().find('input').data('cart-item-id'),
quantity: number,
},
success: function()
{
$.get({
url: '/get_cart_total',
success: function(r)
{
$('.alfiytsds').html(r);
}
});
}
});
}