Hi @esperiaweb,
Apologies for delay in getting back here, we are looking into this and will get back to you soon.
Thanks!
Hi @esperiaweb ,
Did you set the error type to detailed rather generic Type in PayPal express settings?
Also, We do have some developer hooks to customize these experience.
Here is a filter to alter this experience based on your needs.
add_filter( 'angelleye_ec_display_type_message',
'my_function', 10, 3 );
function my_function (
$error_display_type_message, $ErrorCode, $ErrorLongMsg)
{
$error_display_type_message = "Please contact us and let us know you received error code $ErrorCode";
return $error_display_type_message;
}
For more, Please take a look here
Let me know if there will be any other questions or concerns.
Thanks!
This code isn’t working (after changing " to “).
In Sandbox, when testing a 10755 error with 107.55 purchase (from here – https://developer.paypal.com/docs/classic/lifecycle/nt-classic/#test-api-error-handling-routines), it returns the error “10755 – Currency is not supported” and not the “Please contact us” message.
There doesn’t seem to be a way to test a 10486 error via Paypal Developer.
-
This reply was modified 7 years, 2 months ago by
Henry.