【发布时间】:2021-02-01 21:23:08
【问题描述】:
在购物车计算总数时,我正拼命尝试删除一个动作。
这是我的代码:
remove_action('woocommerce_cart_calculate_fees', array('WCS_Cart_Renewal', 'remove_non_recurring_fees'), 1000);
在 WooCommerce 订阅插件上进行原始操作时:
// Remove non-recurring fees from renewal carts. Hooked in late (priority 1000), to ensure we handle all fees added by third-parties.
add_action( 'woocommerce_cart_calculate_fees', array( $this, 'remove_non_recurring_fees' ), 1000 );
很遗憾,我无法删除 remove_non_recurring_fees 挂钩函数。
知道为什么吗?
【问题讨论】:
标签: php wordpress woocommerce hook-woocommerce woocommerce-subscriptions