我当前正在使用3.5.7版本的WC。但是我找不到禁用Woocommerce持久购物车功能的方法。
有人可以给我解决我的问题的方法吗?
答案 0 :(得分:0)
尝试一下:
add_action( 'woocommerce_cart_updated', 'delete_persistent_cart' );
function delete_persistent_cart() {
if ( get_current_user_id() ) {
$wc = WooCommerce::instance();
$wc->cart->persistent_cart_destroy();
}
}
这进入您的子主题function.php
文件,并禁用了持久购物车。