Missing $order argument for woocommerce_payment_successful_result
-
Hi,
seems like you are missing the parameter $order within the following WooCommerce filter (line 1114, classes/wc-gateway-paypal-express-angeleye.php)
$result = apply_filters('woocommerce_payment_successful_result', $result);
that should be:
`$result = apply_filters(‘woocommerce_payment_successful_result’, $result, $order->id);
please fix that because it leads to plugin incompatibilities..
cheers
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Missing $order argument for woocommerce_payment_successful_result’ is closed to new replies.