"Add to Cart" button missing. Quantity Increment Buttons widget works only with "Add to Cart" button. Please add the button to the Single Product Template.
jQuery(function($){
// ברגע שנלחץ על כפתור הוספה לסל
$('body').on('click', '.single_add_to_cart_button', function(e){
e.preventDefault(); // מונע מעבר לעמוד המוצר
var $thisbutton = $(this);// הוספת המוצר לסל
var product_id = $thisbutton.val();
var quantity = 1; // כמות ברירת מחדל, תוכל לשנות את זה אם יש לך צורך// שליחת המידע לווקומרס דרך AJAX להוסיף את המוצר לסל
$.ajax({
url: wc_add_to_cart_params.ajax_url,
type: 'POST',
data: {
action: 'woocommerce_add_to_cart',
product_id: product_id,
quantity: quantity
},
success: function(response) {
// הוספת המוצר הצליחה, אפשר לעדכן את העגלת קניות או להציג הודעה
$(document.body).trigger('added_to_cart', [response.fragments, response.cart_hash]);
}
});
});
});