Page 1 of 1

Paypal payment won't redirect to Paypal

Posted: 12 Jan 2023, 11:43
by morphinestyle
Hello,
i can't get automatic redirect to Paypal website to pay my order.
Every time i need to click the button.

How can i solve?

Re: Paypal payment won't redirect to Paypal

Posted: 12 Jan 2023, 16:36
by morphinestyle
Solved,
i was loading a JS function with:

Code: Select all

window.onload = function() {
MY_JS_FUNCTION();
};
it conflicts with Phoca Cart redirection.

I replaced it with:

Code: Select all

document.addEventListener('DOMContentLoaded', MY_JS_FUNCTION);
and i solved the issue.

Re: Paypal payment won't redirect to Paypal

Posted: 17 Jan 2023, 18:55
by Jan
Ok, great to hear it, thank you for the info.

Jan