我正在构建一个批量订单表单插件(用于wordpress / woocommerce)-所有添加到购物车的功能都工作正常。我正在努力创建“取消订单”按钮,按下该按钮可以清除所有项目行(此位有效)以及从购物车中删除所有项目。
我正在尝试结合使用AJAX / js,php和标准HTML ..
我的按钮..:
<button class="btn btn-danger btn-lg" id="cancelorder">Cancel Order</button>
我的购物车清空功能..
add_action( 'init', 'woocommerce_clear_cart_url' );
function woocommerce_clear_cart_url() {
global $woocommerce;
if ( isset( $_GET['empty-cart'] ) ) {
$woocommerce->cart->empty_cart();
}
}
最后,我的js函数/ ajax调用..:
$("#cancelorder").click(function(){
if(confirm('Are you sure you want to clear all rows?')){
$(".addedrow").remove(); //removes line items - not related to issue
$.ajax({
type: "POST",
url: '/wp-admin/admin-ajax.php?action=woocommerce_clear_cart_url',
data: {action : 'woocommerce_clear_cart_url'},
success: function (res) {
if (res) {
alert('Removed Successfully');
}
}
});
} else {
//back out with no action
}
});
行从表单中删除,但项目保留在购物车中。
答案 0 :(得分:0)
好吧,看起来您正在发送POST请求
type: "POST"
并尝试在控制器上恢复GET参数
if ( isset( $_GET['empty-cart'] ) )
此外,您正在寻找的密钥('empty-cart'
似乎根本不存在...
至少在您提供的这部分代码中...
答案 1 :(得分:0)
更新:通过将上面的现有代码修改为以下内容,我能够使它正常工作。:
购物车空功能..:
add_action('wp_ajax_wc_woocommerce_clear_cart_url', 'wc_woocommerce_clear_cart_url');
add_action('wp_ajax_nopriv_wc_woocommerce_clear_cart_url', 'wc_woocommerce_clear_cart_url');
//added wc_ prefix in case of function name conflict
function wc_woocommerce_clear_cart_url() {
global $woocommerce;
$returned = ['status'=>'error','msg'=>'Your order could not be emptied'];
$woocommerce->cart->empty_cart();
if ( $woocommerce->cart->get_cart_contents_count() == 0 ) {
$returned = ['status'=>'success','msg'=>'Your order has been reset!'];
}
die(json_encode($returned));
}
和js / ajax方面..
$("#cancelorder").on('click',function(){
if(confirm('Are you sure you want to clear all rows?')){
$.ajax({
type: 'POST',
dataType: 'json',
url: '/wp-admin/admin-ajax.php?action=wc_woocommerce_clear_cart_url',
data: {action : 'wc_woocommerce_clear_cart_url'},
success: function (data) {
if (data.status != 'success') {
alert(data.msg);
} else {
$('#itemrows').html('');
addrows();
}
}
});
} else {
//back out with no action
}
});