如何在添加到购物车之前清除简易数字下载(edd)购物车?每个购物车只允许一个项目
发布于 2020-06-08 16:33:16
实际上,我在加入堆栈溢出之前就找到了答案,但非常困难,需要进行多次搜索和尝试。现在我决定在这里再分享一次,以便更容易地为其他人找到答案。
只需将下面的代码添加到function.php
add_filter( 'edd_pre_add_to_cart_contents', '__return_false' );发布于 2021-03-11 01:54:14
为了发展而改变;
/**
* If there is more than 1 item in the basket and the total price is 0, the basket will be emptied.
*/
function pw_edd_one_item_checkout( $download_id, $options ) {
if( edd_get_cart_quantity() >= 1 && edd_get_cart_total() == 0) {
edd_empty_cart();
}
}
add_action( 'edd_pre_add_to_cart', 'pw_edd_one_item_checkout', 10, 2 );
https://stackoverflow.com/questions/62257975
复制相似问题