• Resolved EsperiaWeb

    (@esperiaweb)


    Hi, i know that this has been asked a million times but the problem it’s still there and it’s quite serious IMHO.
    Which is the best way to redirect the user adn let him know that there’s no enough fund on the chosen payment method?

    Best regards

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor angelleyesupport

    (@angelleyesupport)

    Hi @esperiaweb,

    Apologies for delay in getting back here, we are looking into this and will get back to you soon.

    Thanks!

    Plugin Contributor angelleyesupport

    (@angelleyesupport)

    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.
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Error Code 10486 Redirection’ is closed to new replies.