Woocommerce - 在用户注销时清除购物车
Woocommerce - Clear cart on user logout
我在 wordpress 网站上使用 woocommerce。
我需要在用户注销时清除已登录用户的购物车内容。
我在插件设置中找不到任何相同的选项。
任何人都可以告诉我实现相同目标的方法。
使用 wp_logout
挂钩清空购物车。将以下代码放入您的主题 function.php
或您自己的插件中。
function your_function() {
if( function_exists('WC') ){
WC()->cart->empty_cart();
}
}
add_action('wp_logout', 'your_function');
编辑:根据@helgatheviking 的解决方案
我在 wordpress 网站上使用 woocommerce。
我需要在用户注销时清除已登录用户的购物车内容。
我在插件设置中找不到任何相同的选项。
任何人都可以告诉我实现相同目标的方法。
使用 wp_logout
挂钩清空购物车。将以下代码放入您的主题 function.php
或您自己的插件中。
function your_function() {
if( function_exists('WC') ){
WC()->cart->empty_cart();
}
}
add_action('wp_logout', 'your_function');
编辑:根据@helgatheviking 的解决方案