Zen Cart Logo
Forums / All Other Contributions/Addons / My Checkout Without Account Mod

My Checkout Without Account Mod

Locked

Views: 323,003

Results 1,041 to 1,060 of 1,220
This thread is locked. New replies are disabled.
28 Sep 2010, 20:33
#1041
craftzombie avatar

craftzombie

Zen Follower

Join Date:
Jul 2006
Posts:
494
Plugin Contributions:
0

My Checkout Without Account Mod

Muzaheer:

How any customer do the shopping without account using zen-cart 1.3.8a. can any one tell me???:smile:
Tabish

They do use an account, they just think they are not. It is still creating an account, it is just not asking for a password and they cannot ever log in, etc.

07 Oct 2010, 07:20
#1042
checkmate2506 avatar

checkmate2506

New Zenner

Join Date:
Oct 2010
Posts:
1
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Hi I am using zen cart version 1.3.9d and I installed the latest mod 2.0c1. I am having issue after filling in the details on the billing. I tried to click continue checkout, it will refresh the Billing page. No matter how many times I tried keying in the information in the billing page, it still stuck at the Billing page after I press the continue checkout button.

Can someone kindly help me?

Thanks.

07 Oct 2010, 20:20
#1043
craftzombie avatar

craftzombie

Zen Follower

Join Date:
Jul 2006
Posts:
494
Plugin Contributions:
0

Re: My Checkout Without Account Mod

checkmate2506:

Hi I am using zen cart version 1.3.9d and I installed the latest mod 2.0c1. I am having issue after filling in the details on the billing. I tried to click continue checkout, it will refresh the Billing page. No matter how many times I tried keying in the information in the billing page, it still stuck at the Billing page after I press the continue checkout button.

Can someone kindly help me?

Thanks.

Its usually because of an error during installation. Files may not have transferred or you may have missed some. Re-install. And did you remember the SQL file??

10 Oct 2010, 18:26
#1044
polar45 avatar

polar45

New Zenner

Join Date:
Jan 2009
Posts:
3
Plugin Contributions:
0

Re: My Checkout Without Account Mod

I've waded through a lot of this thread, if I missed it, my apologies. I think this is a great contribution, but I would like to demand as little as possible of my customers. I have an in-store pickup shipping option, and for those customers I only need to obtain their email and phone. Is there a way to modify the contribution so that only customers who require shipping are required to provide that info (after they've chosen the shipping method)?

11 Oct 2010, 08:34
#1045
polar45 avatar

polar45

New Zenner

Join Date:
Jan 2009
Posts:
3
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Expanding on my previous post, my idea would be on the no_account page to have 2 radio buttons below the progress box, labeled "In-Store Pickup" and "Ship My Order", with the first being the default. The shipping step would be removed from the progress bar. The address fields would be pre-filled with my store address, If the user selects the second radio button, the page would be refreshed with shipping being added to the progress bar, the address information would be removed, and the customer proceeds as usual. I suppose the in-store option could be removed from the shipping page as well. I'm not much of a programmer, but would it be feasible? Hints & suggestions welcome.

11 Oct 2010, 08:53
#1046
polar45 avatar

polar45

New Zenner

Join Date:
Jan 2009
Posts:
3
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Sorry for the multiple posts, but the edit timeout is too fast for my limited cerebral resources.

Might creating another page with the buttons added, shipping removed from the progress bar and the address info pre-filled and re-directing the login to this page work? Then licking on the "Ship my Order" button would load the normal no_account page. Or is there a better way?

12 Oct 2010, 19:57
#1047
biggd avatar

biggd

New Zenner

Join Date:
Feb 2010
Posts:
13
Plugin Contributions:
0

Re: My Checkout Without Account Mod

JDog21:

  1. I did NOT DO STEP 1a (editing the tpl_header) because I **could not find **any custom template directory(ies) that had a header_tpl file. For the short term, I didn't think this would matter, as the instructions state that this is only for the purpose of preventing the My Account from showing up after the COWA users enter their order number and e-mail. --I thought I'd worry about this issue later)

This file is located in the /includes/templates/YOUR_TEMPLATE/common folder. Don't you love how stuff is hidden? :)

JDog21:

So, today, I reinstalled it. I did not install the SQL patch again, as I'm sure it's still there. Same result.

...

3)I installed the SQL patch. This was the first time I"ve ever done that. I copied the stuff in the install package, and pasted it in there, and then hit "send" ..... (yes, I made sure it ended with a ; )

...

  1. I went to the Admin, configuration, and there is no COWOA selection available. I could not set the three parametres as specified.....

I had the same issue with this module. COWOA wasn't displaying in the configuration drop down menu. To solve my problem, I re-ran the second half of the SQL install file. The portion i re-ran was this:

INSERT INTO configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) VALUES (NULL, 'COWOA', 'Set Checkout Without an Account', '1', '1');
SET @configuration_group_id=last_insert_id();
UPDATE configuration_group SET sort_order = @configuration_group_id WHERE configuration_group_id = @configuration_group_id;

INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES 
(NULL, 'Cowoa', 'COWOA_STATUS', 'false', 'Activate COWOA Checkout? <br />Set to True to allow a customer to checkout without an account.', @configuration_group_id, 10, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
(NULL, 'Enable Order Status', 'COWOA_ORDER_STATUS', 'false', 'Enable The Order Status Function of COWOA?<br />Set to True so that a Customer that uses COWOA will receive an E-Mail with instructions on how to view the status of their order.', @configuration_group_id, 11, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
(NULL, 'Enable E-Mail Only', 'COWOA_EMAIL_ONLY', 'false', 'Enable The E-Mail Order Function of COWOA?<br />Set to True so that a Customer that uses COWOA will only need to enter their E-Mail Address upon checkout if their Cart Balance is 0 (Free).', @configuration_group_id, 12, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
(NULL, 'Enable Forced Logoff', 'COWOA_LOGOFF', 'false', 'Enable The Forced LogOff Function of COWOA?<br />Set to True so that a Customer that uses COWOA will be logged off automatically after a sucessfull checkout. If they are getting a file download, then they will have to wait for the Status E-Mail to arrive in order to download the file.', @configuration_group_id, 13, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');

UPDATE configuration SET configuration_value = 'True' WHERE configuration_title = 'Use split-login page';

I haven't completed the process and confirmed the module working yet, but that should give you a point in the right direction. Assuming it works for you :D

EDIT: I got the module working

07 Nov 2010, 17:08
#1048
linnx avatar

linnx

Zen Follower

Join Date:
Jun 2009
Posts:
187
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Is anyone using this mod with 1.3.9g or later and using Attributes with Stock module? We installed COWOA and it seemed to be running fine. However, we noticed that it wasn't subtracting stock from the Stock by Attributes. Once we removed the module, stock began to subtract fine.

Anyone else experience that ?

29 Nov 2010, 00:22
#1049
dysfunctional avatar

dysfunctional

Zen Follower

Join Date:
Apr 2008
Posts:
159
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Wow, been reading some parts of this thread and this seems like a lovely contribution.

I'm just wondering if the ones who chose to checkout without an account still gets an option to subscribe to my stores newsletter? Because this is really important to me, and to other shop owners, I believe.

linnx - If this module is supporting newsletter signup I'm definately gonna try it out. I'm also using (and I'm very dependent of) the "attributes with stock" contrib, so I will let you know my results once I've tried.

02 Dec 2010, 01:14
#1050
gaurav10feb avatar

gaurav10feb

Zen Follower

Join Date:
Jan 2010
Location:
Australia
Posts:
243
Plugin Contributions:
1

Re: My Checkout Without Account Mod

HOw can i add FN, LN and telephone number with COWOA email only checkout.

Please help

02 Dec 2010, 05:44
#1051
gaurav10feb avatar

gaurav10feb

Zen Follower

Join Date:
Jan 2010
Location:
Australia
Posts:
243
Plugin Contributions:
1

Re: My Checkout Without Account Mod

I am able to manage that..if nyone interested to know let me know.

08 Dec 2010, 11:18
#1052
ttpolo avatar

ttpolo

New Zenner

Join Date:
Dec 2010
Posts:
1
Plugin Contributions:
0

Re: My Checkout Without Account Mod

I got a problem when installing SQL for this mod
(version: cowoa_2-0c1).
It reads
"ERROR: Cannot insert configuration_key "" because it already exists"
"ERROR: Cannot insert configuration_key "" because it already exists"
Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.

I tried many times, but it always come out.
Can anybody help me?

09 Dec 2010, 15:59
#1053
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: My Checkout Without Account Mod

gaurav10feb:

I am able to manage that..if nyone interested to know let me know.
Community forum, community contributions.. Please share your solution here so others who need it too can benefit..:smile:

14 Dec 2010, 15:27
#1054
r1formetoo avatar

r1formetoo

Zen Follower

Join Date:
Sep 2008
Posts:
429
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Ok, so I've decided to install COWOA on my copy of 1.3.8a and the first thing I see is below:

STEP 1a - In your custom template son your cart, edit the tpl_header.php file and look for this line.

<?php if (($_SESSION['customer_id']) { ?>

change it to this.

<?php if (($_SESSION['customer_id']) && (!$_SESSION['COWOA']=='True')) { ?>

This prevents the My Account from showing up after the COWOA Users enters their Order Number and E-Mail Address to view their order.

So, before I go searching and possibly change the wrong tpl_header.php file can someone please tell me the exact location of this file? Thank you in advance.

Ian

14 Dec 2010, 21:11
#1055
valansi avatar

valansi

New Zenner

Join Date:
Dec 2010
Posts:
37
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Hi, I am having a problem with COWMA. I set up everything up, and when I enter the billing address, and it doesn't move onto shipping address, it just returns to billing address, with the fields left blank. Can anyone help? THanks

29 Dec 2010, 22:49
#1056
hockey2112 avatar

hockey2112

Zen Follower

Join Date:
Jun 2010
Posts:
204
Plugin Contributions:
0

Re: My Checkout Without Account Mod

I am having an issue, seemingly caused by the integration of this COWOA add-on. On the "Order Review" page, the payment information is blank. When I proceed with the checkout, the order goes through and tells me that the payment method used was "Gift Certificate/Coupon", even though I have AuthorizeNet installed and entered the credit card number in the appropriate fields. I also experience the same issue if I activate and use COD as the payment method, so this issue is not exclusive to the AuthorizeNet software.

I have tried re-copying the files over, but that did not fix the issue. I'm not exactly sure how else to troubleshoot the problem, short of uninstalling the COWOA files and replacing them with my backups of the original files and also running the SQL uninstall script. Before I did all that, I figured I would check and see if anyone here has seen this occur before, or if anyone would know where I can look to find the culprit.

Here is the website in question: http://tinyurl.com/345v9de

Website Info and add-ons installed:
ZC 1.3.9d (yes, I need to upgrade)
CEON URI mapping
COWOA 2-0c1
Category Tab Simple Drop Down Menu 1-02a
EZ Populate

Thanks!

29 Dec 2010, 23:01
#1057
craftzombie avatar

craftzombie

Zen Follower

Join Date:
Jul 2006
Posts:
494
Plugin Contributions:
0

Re: My Checkout Without Account Mod

hockey2112:

I am having an issue, seemingly caused by the integration of this COWOA add-on. On the "Order Review" page, the payment information is blank. When I proceed with the checkout, the order goes through and tells me that the payment method used was "Gift Certificate/Coupon", even though I have AuthorizeNet installed and entered the credit card number in the appropriate fields. I also experience the same issue if I activate and use COD as the payment method, so this issue is not exclusive to the AuthorizeNet software.

I just went through your checkout and had no issues.

29 Dec 2010, 23:14
#1058
hockey2112 avatar

hockey2112

Zen Follower

Join Date:
Jun 2010
Posts:
204
Plugin Contributions:
0

Re: My Checkout Without Account Mod

craftzombie:

I just went through your checkout and had no issues.

Thanks for checking it out. I noticed that you chose COD as your payment method. I just removed that method... please try checking out again, and enter a bogus credit card number in the cart. the order will "successfully" go through, and the order info in the admin area will state that you paid via Gift Cart/Coupon. So the issue is still there... :(

30 Dec 2010, 23:20
#1059
hockey2112 avatar

hockey2112

Zen Follower

Join Date:
Jun 2010
Posts:
204
Plugin Contributions:
0

Re: My Checkout Without Account Mod

hockey2112:

Thanks for checking it out. I noticed that you chose COD as your payment method. I just removed that method... please try checking out again, and enter a bogus credit card number in the cart. the order will "successfully" go through, and the order info in the admin area will state that you paid via Gift Cart/Coupon. So the issue is still there... :(

Just as an update, it seems the issue is on index.php?main_page=checkout_payment . I installed 1.3.9d and an older version of the db from this site (pre-COWOA) onto a test server, and the cart functioned normally. In fact, it kicked me back to re-enter my CC info b/c I had put 4444444444444444 as the cc number.

I then dropped the db tables, imported the "with COWOA" db from this site, and the issue is occurring on the test site's cart. When I put 4444444444444444 as the cc number, it proceeds as if everything is correct and the shows no info under Payment Method as I described above.

Any ideas?


Upon further investigation, I hadn't even uploaded the COWOA-modified checkout_payment.php file, so I guess that file isn't the culprit at all. Really stumped on this one...

02 Jan 2011, 21:30
#1060
greengreetings avatar

greengreetings

Zen Follower

Join Date:
May 2009
Location:
Virginia
Posts:
90
Plugin Contributions:
0

Re: My Checkout Without Account Mod

**When I go to Configuration -> COWOA, all I see is Title, Value, and Action, but the rest of the page is blank.
**
I am using v1.3.9h and I did a full install.

On the front-end, the "sign up" and "login" boxes are the only ones that show up. There is no COWOA box.

I have changed the names of all the override templates.

Any suggestions as to what I have done wrong?