One page checkout - anonymous checkout is not working

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
sjdj
Ensign (ENS)
Ensign (ENS)
Posts: 16
Joined: Mon Feb 09, 2004 12:51 pm

One page checkout - anonymous checkout is not working

Post by sjdj » Fri Jul 18, 2008 10:49 am

We set up a new store site with the one page checkout ConLib and allow anonymous checkout as "True". It had been working but now it is not. Now a user is required to set up a password to process the order. Can anyone give me some insight on this?

Thanks!

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: One page checkout - anonymous checkout is not working

Post by mazhar » Fri Jul 18, 2008 12:58 pm

This is basically an alert so that if user wants to register then he may be able to create its account but password is not mandatory. if you see there is a check box available which the user can check and make checkout without providing password and account creation.

sjdj
Ensign (ENS)
Ensign (ENS)
Posts: 16
Joined: Mon Feb 09, 2004 12:51 pm

Re: One page checkout - anonymous checkout is not working

Post by sjdj » Fri Jul 18, 2008 1:19 pm

Thank you for your reply. The problem was that the check box for anonymous checkout was not available, as it had been once before. It just disappeared, and it did for our client as well, on a totally different system and computer. But now -- after lunch -- the check box is back, so, something random is happening. Maybe it needed some lunch - ha!

I re-checked the ConLib and it was set up correctly. Weird.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: One page checkout - anonymous checkout is not working

Post by mazhar » Fri Jul 18, 2008 1:47 pm

You can hide the check box by changing the following line of code in OnePageCheckout.ascx.cs

Code: Select all

trAccount.Visible = (!(editBilling || editShipping) && isAnonymous);
to

Code: Select all

trAccount.Visible = (!(editBilling || editShipping) && isAnonymous && false);

Post Reply