Page 1 of 1

virtual product - register customers

Posted: 29 Jul 2016, 18:41
by IOU42
We have some downloadable products and have added them to the catalogue.
The checkout process works well, except for user not being 'forced' to register during the check out.

As the download link in the email requires login, I would expect a required registration at check out. This is not showing as one of the options for the check out. I have configured below steps in config file shop.php:

Code: Select all

'subparts'=>array( 'address', 'payment', 'summary', 'order', 'process' )
Or should this be enforced by adding 'auth' to the controller for one of the steps?

Is it possible to offer the check out without registering, obviously with the download link without the auth and available for some restricted time/downloads.

Can you please provide some guidance on how to achieve this?

Thanks!

Re: virtual product - register customers

Posted: 01 Aug 2016, 14:51
by aimeos
IOU42 wrote:Is it possible to offer the check out without registering, obviously with the download link without the auth and available for some restricted time/downloads.
Yes, because if a user has no account yet, there is one created by default at the end of the order process. Only make sure that you execute the job for the account creation e-mails.

Re: virtual product - register customers

Posted: 25 Aug 2016, 21:02
by IOU42
Thanks it works well now!