Wrong add_action, needs fix
-
Everytime someone abandons the cart I get this in my error_log:
[02-Aug-2019 22:53:03 UTC] PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'on_action_cart_updated' not found or invalid function name in /my/path/to/wordpress/wp-includes/class-wp-hook.php on line 286Which leads back to the file woo-cart-abandonment/modules/cart-abandonment/class-cartflows-ca-cart-abandonment.php line 47:
add_action( 'woocommerce_update_cart_action_cart_updated', 'on_action_cart_updated', 20, 1 );Aparently the
on_action_cart_updateddoesn’t exist. So this line serves no purpose and should be removed.
The topic ‘Wrong add_action, needs fix’ is closed to new replies.