1 reply [Last post]
spike's picture
Offline
Joined: 12/21/2007
Juice: 15
Was this information Helpful?

Ok when I click on a product and then checkout I am sent to pp and all goes well till the pp return function sends me back to a Blank page. Can anyone offer a simple reason why I would get a blank page. I have installed file_produce and was thinking it would send me to the download section???

HELP an old man out please LOL

agilpwc's picture
Offline
Joined: 12/10/2007
Juice: 213
Re: Kinda got things working

goto 'checkout settings' and the last option is 'Alternate checkout completion page:'
Set that to what page you want it to goto.

In your case you could set it to 'user/me/files' or 'user/me' using the 'me alias' module. Though I've been having some trouble with the module.

Better option might be to create a page that explains where they can find their downloads and set the Alternate checkout page to it. Include a direct link to their download page. This is assuming they are logged in, and not checking out as anonymous.

Which is on their 'my account' page and give a link to it. Using some php code to set a url href to

<?php
global $user;
echo
"<a href='/user/$user->uid/files'>Your downloads</a>";
?>