Created
October 1, 2018 10:18
-
-
Save apisklov/b9be05f8e41fbc44d912a8e555398f50 to your computer and use it in GitHub Desktop.
Ajax Add to cart Woo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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