Skip to content

Instantly share code, notes, and snippets.

@apisklov
Created October 1, 2018 10:18
Show Gist options
  • Save apisklov/b9be05f8e41fbc44d912a8e555398f50 to your computer and use it in GitHub Desktop.
Save apisklov/b9be05f8e41fbc44d912a8e555398f50 to your computer and use it in GitHub Desktop.
Ajax Add to cart Woo
// Ajax добавление товара в корзину
function addToCartAjax(){
$('.single_add_to_cart_button').click(function(e){
e.preventDefault();
var product_id = $(this).val();
var variation_id = $('input[name="variation_id"]').val();
var quantity = $('input[name="quantity"]').val();
var ajax_url = "/wp-admin/admin-ajax.php";
$.ajax({
url: ajax_url,
type: 'POST',
data: 'action=add_cart_single&product_id=' + product_id + '&variation_id=' + variation_id + '&quantity=' + quantity,
success: function(result){
var el = $('.Basket__text');
var count = Number(el.text());
var summ = count + Number(quantity);
el.html(summ);
}
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment