• Resolved Brian Henry

    (@brianhenryie)


    Currently, when a customer chooses Sezzle on the checkout and clicks Place Order they are briefly redirected to another page on our site before being redirected to Sezzle as expected.

    This came to our attention yesterday when a customer was having trouble placing the order.

    In the plugin ~line 505 there is a check from the response for the checkout url we need.

    The plugin then returns the following to WooCommerce:

    
    return array(
        'result' => 'success',
        'redirect' => $order->get_checkout_payment_url(true),
    );
    

    but just directly returning the actual Sezzle checkout URL works better:

    
    return array(
        'result' => 'success',
        'redirect' => $body->checkout_url
    );
    

    This is better UX and the customer was also able to place the order.

    • This topic was modified 3 years, 4 months ago by Brian Henry.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sezzle redirect URL UX’ is closed to new replies.