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
I found an issue with the 2.3 stable version. if i check out and pay as a guest, it will complain a no method error in the paypal controller: order.token.
I did a quick fix as below but I am sure it is not the best solution.
def completion_route(order)
begin
order_path(order, :token => order.token)
rescue
order_path(order, :token => order.guest_token)
end
end
Excuse me, my writing about this issue isn't very professional and I am not a professional programmer but I hope this information is helpful.
Thank you developer for creating this great tool!!!!
David
The text was updated successfully, but these errors were encountered:
Hi @gogo52cn. You're right. This call should be order.guest_token. Could you please submit a pull request which changes the call from order.token to order.guest_token?
Hi developer,
I found an issue with the 2.3 stable version. if i check out and pay as a guest, it will complain a no method error in the paypal controller: order.token.
I did a quick fix as below but I am sure it is not the best solution.
Excuse me, my writing about this issue isn't very professional and I am not a professional programmer but I hope this information is helpful.
Thank you developer for creating this great tool!!!!
David
The text was updated successfully, but these errors were encountered: