Current workaround is:
$cbrProdResInstance = \CBR_Product_Restriction::get_instance();
remove_action(
'woocommerce_review_order_before_cart_contents',
array(
$cbrProdResInstance,
'update_cart_and_checkout_items'
)
);
I’m having the exact same issue, @zorem have you been able to test your side as of yet?
if I comment out products-restriction.php:95 it works
PHP
add_action( 'woocommerce_review_order_before_cart_contents', array( $this, 'update_cart_and_checkout_items' ), 10 );
-
This reply was modified 4 years, 2 months ago by darkphoenix1.