
03-14-2013, 11:51 AM
|
 |
Ecwid Team
|
|
Join Date: Oct 2011
Posts: 4,947
|
|
Quote:
Originally Posted by Justin Killeen
This doesn't work. I get the same error page that I get when I try and checkout via PayPal. I have PayPal Payments Advanced and everything checks out ok in terms of set-up. Here's an example of one of my products...
http://pioneervalleyfitness.com/supp...88&id=19011491
|
Thank you. Now I see.
The issue is not anyhow connected with PayPal. In fact, it doesn't even have anything to do with Ecwid. The reason why such links return 'Page not found' error is the custom code you use on your site. In the source of your store page, I found this code:
Code:
if (window.location.hash.indexOf('#!/') == 0) {
window.location.replace(window.location.hash.substr(2));
}
That code changes page URL when the address contains hash part - it simply removes that part and redirects customer to a non-existant page, which results in the error you saw.
In order to fix the issue, you will need to remove that code.
Quote:
Is there any way to determine which sales come from which site?
|
Yes, please refer to this article:
http://kb.ecwid.com/w/page/52602187/...%20came%20from
|