Page 1 of 1

[solved] CGEcommerce - ordering without account.

Posted: Mon Oct 08, 2012 7:25 am
by numero7
config :
Cms Version: 1.10.3

Installed Modules:

CMSMailer: 2.0.2
CMSPrinting: 1.0
FileManager: 1.2.0
MenuManager: 1.7.7
MicroTiny: 1.1.1
ModuleManager: 1.5.3
News: 2.12.3
Search: 1.7
ThemeManager: 1.1.4
CGExtensions: 1.27.9
FrontEndUsers: 1.17
CGSimpleSmarty: 1.4.10
CustomContent: 1.7.3
Products: 2.16.2
CGEcommerceBase: 1.3.9
Cart: 1.8.1
CGPaymentGatewayBase: 1.0.11
Orders: 1.13
SelfRegistration: 1.6.14
Captcha: 0.4.5
TinyMCE: 2.9.6
JQueryTools: 1.0.10
CGContentUtils: 1.3
CGFBApp: 1.0.7
FormBuilder: 0.7.1
Showtime: 2.0.5
SiteMapMadeSimple: 1.2.5
-----------------------------------------

Hi all I'm quit new on CMSMS and I just got a client request for an existing website that I manage now.

Actually the FEU has to be logged in to purchase items in the webshop but my client want that anyone can buy or place order without register.
I've seen on the e-commerce >orders > prefs that you can allow non logged in users to make purchase in the shop, so I've enabled the function but when i perform tests nothing change.

My order page looks like this :

Code: Select all

{if $ccuser->loggedin()} {Orders lang="en_US"} {else}
<h2>I AM ALREADY A CUSTOMER OF EGF</h2>
{FrontEndUsers nocaptcha="1" lang="en_US"}<br /><br /><br /><br /><br /><br /><br /><br /><br />{/if}
<h4>I am not a customer of EGF</h4>
<p><a href="{cms_selflink href='quick-register'}">Quick register</a></p>
Should I modify this content to skip the registration process and go straight in the purchase and delivery details page ?
I admit I'm a bit lost.

Anyone can help me ? sorry if my explanation sound confuse

have a nice day.

Re: CGEcommerce - ordering without account.

Posted: Mon Oct 08, 2012 9:43 pm
by Dr.CSS
If they are not going to have to be registered then just use the Orders tag with out all the other calls/tags...

Re: CGEcommerce - ordering without account.

Posted: Tue Oct 09, 2012 6:01 am
by numero7
Hello Thanks for your answer, can you give me direction how to use it ? many thanks for your help.

Re: CGEcommerce - ordering without account.

Posted: Tue Oct 09, 2012 10:36 am
by Jo Morg
Dr.CSS wrote:If they are not going to have to be registered then just use the Orders tag with out all the other calls/tags...
Replace

Code: Select all

{if $ccuser->loggedin()} {Orders lang="en_US"} {else}
<h2>I AM ALREADY A CUSTOMER OF EGF</h2>
{FrontEndUsers nocaptcha="1" lang="en_US"}<br /><br /><br /><br /><br /><br /><br /><br /><br />{/if}
<h4>I am not a customer of EGF</h4>
<p><a href="{cms_selflink href='quick-register'}">Quick register</a></p>
with

Code: Select all

 {Orders lang="en_US"} 

Re: CGEcommerce - ordering without account.

Posted: Tue Oct 09, 2012 10:51 am
by numero7
Great and simple :-) I will test now... thanks for your time