If user returns to site, deciding against partial.ly order is cancelled
-
When a user is in the checkout process, they see this fancy partial payment option so they go and check it out. They get transferred to partial.ly and they view terms etc. They decide, eeh, I will pick another payment option so they click the “Return to site” option at the bottom of the page and it sends them back to the site.
The problem is, it cancels the order through woocommerce. They now no longer have the option to pick another payment method and now site administration intervention is required.
Is there a way to change this?
I see you are doing this
`if( method_exists($order, “get_cancel_order_url_raw”) ) {
$body[‘payment_plan’][‘meta’][‘checkout_cancel_url’] = $order->get_cancel_order_url_raw();
}
else {
$body[‘payment_plan’][‘meta’][‘checkout_cancel_url’] = $order->get_cancel_order_url();
}`Maybe add an option to “return to cart / checkout” instead of cancelling?
- The topic ‘If user returns to site, deciding against partial.ly order is cancelled’ is closed to new replies.