You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the customer aborts during the payment process (when the payment is pending), my woocommerce installation sends the customer an email with a link to pay for the order ($order->get_checkout_payment_url()). However if the customer selects a wallee payment gateway, nothing happens until forwarded to a json. Any easy idea how to make this page work?
Thanks.
The text was updated successfully, but these errors were encountered:
In our plugin you can add a new line after: includes/service/class-wc-wallee-service-transaction.php line 878 as well after 852, respectively after the transaction create method ($this->get_transaction_service()->create())
In this new lines apply the created charge flow on the transaction: WC_Wallee_Helper::instance()->get_api_client()->getChargeFlowService()->applyFlow($space_id, $transaction->getId());
After this, save it and clear shop cache if available.
Now you can test it, by doing an order with your own mail address, and by leaving the payment process after the payment method selection. => you should receive then a mail within the next minutes.
Hi,
When the customer aborts during the payment process (when the payment is pending), my woocommerce installation sends the customer an email with a link to pay for the order ($order->get_checkout_payment_url()). However if the customer selects a wallee payment gateway, nothing happens until forwarded to a json. Any easy idea how to make this page work?
Thanks.
The text was updated successfully, but these errors were encountered: