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

My Checkout Without Account Mod

Locked

Views: 323,003

Results 1,101 to 1,120 of 1,220
This thread is locked. New replies are disabled.
02 Jun 2011, 06:23
#1101
craftzombie avatar

craftzombie

Zen Follower

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

My Checkout Without Account Mod

Eek! I'm just going to shut up now because obviously this isn't my night. I want to help you, but my brain is just not working at the moment. Maybe its time for bed? I wish you could delete posts! I see now that your links are like mine and I was seeing something different. I'm sorry.... I tried!!!!! :smile:

02 Jun 2011, 16:14
#1102
mleahy avatar

mleahy

New Zenner

Join Date:
Nov 2010
Posts:
27
Plugin Contributions:
0

Re: My Checkout Without Account Mod

craftzombie:

Eek! I'm just going to shut up now because obviously this isn't my night. I want to help you, but my brain is just not working at the moment. Maybe its time for bed? I wish you could delete posts! I see now that your links are like mine and I was seeing something different. I'm sorry.... I tried!!!!! :smile:

Thanks for trying! :smile:

If you notice anything else that might be causing it I would love to hear about it.

So does yours behave correctly? When someone logs in do they have the Logoff and MyAccount links at the top?

Here is the store I am working on if you want to see what I mean:

https://www.naughticorner.com

Thanks!

Michelle 8-)

02 Jun 2011, 22:10
#1103
craftzombie avatar

craftzombie

Zen Follower

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

Re: My Checkout Without Account Mod

mleahy:

Thanks for trying! :smile:

If you notice anything else that might be causing it I would love to hear about it.

So does yours behave correctly? When someone logs in do they have the Logoff and MyAccount links at the top?

Here is the store I am working on if you want to see what I mean:

https://www.naughticorner.com

Thanks!

Michelle 8-)

Lol... naughty!!! Yes, mine works great. I even changed mine so that instead of it saying "My Account", it says the customers name... "Michelle's Account". I did notice your code looks a tiny bit different:

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

Mine: <?php if (!($_SESSION['COWOA'])) { ?><?php if ($_SESSION['customer_id']) { ?>

Different parentheses and such....

03 Jun 2011, 05:08
#1104
mleahy avatar

mleahy

New Zenner

Join Date:
Nov 2010
Posts:
27
Plugin Contributions:
0

Re: My Checkout Without Account Mod

craftzombie:

Lol... naughty!!! Yes, mine works great. I even changed mine so that instead of it saying "My Account", it says the customers name... "Michelle's Account". I did notice your code looks a tiny bit different:

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

Mine: <?php if (!($_SESSION['COWOA'])) { ?><?php if ($_SESSION['customer_id']) { ?>

Different parentheses and such....

It's a site for my client :blush:.

Thanks for the information on how yours is written. I will play around with it and see if it makes a difference.

Take care!

Michelle 8-)

10 Jun 2011, 17:51
#1105
raj3396 avatar

raj3396

New Zenner

Join Date:
May 2011
Location:
DELHI,INDIA
Posts:
43
Plugin Contributions:
0

Re: My Checkout Without Account Mod

hi i am using zen cart version 1.3.9 ,i have installed cowoa_2-0c1, after installing cowoa ,my site has gone blank .that is the site is not opening please help.site url www.eshopie.com:oops:

10 Jun 2011, 18:23
#1106
raj3396 avatar

raj3396

New Zenner

Join Date:
May 2011
Location:
DELHI,INDIA
Posts:
43
Plugin Contributions:
0

Re: My Checkout Without Account Mod

i tried uninstalling using uninstall sql it says: 1054 Unknown column 'query_builder.query_name' in 'where clause'
in:
[DELETE FROM zen_query_builder WHERE query_builder.query_name = 'Permanent Account Holders Only' LIMIT 1;]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.:clap:

12 Jun 2011, 10:12
#1107
raj3396 avatar

raj3396

New Zenner

Join Date:
May 2011
Location:
DELHI,INDIA
Posts:
43
Plugin Contributions:
0

Re: My Checkout Without Account Mod

well Friends i have restored the site using the backup,thanks

25 Jul 2011, 04:38
#1108
novastar avatar

novastar

Zen Follower

Join Date:
Jul 2009
Posts:
127
Plugin Contributions:
0

Re: My Checkout Without Account Mod

In my header there's a welcome message that says the customers name when logged in but shows input boxes if not logged in. When ever I use COWOA to checkout it shows the customers name in the header as if they're logged in. They can even go to the "My Account" page and it continues to show even after the sale is finished. How can I fix this?

25 Jul 2011, 05:05
#1109
craftzombie avatar

craftzombie

Zen Follower

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

Re: My Checkout Without Account Mod

novastar:

In my header there's a welcome message that says the customers name when logged in but shows input boxes if not logged in. When ever I use COWOA to checkout it shows the customers name in the header as if they're logged in. They can even go to the "My Account" page and it continues to show even after the sale is finished. How can I fix this?

I'm not sure what kind of template you are using because I do not have any kind of welcome message or anything, but as an example for you or anyone else.....

I have mine set to not show the "My Account" link or the "Log Out" link while a customer is using COWOA. For my particular template, in includes/templates/common/tpl_header.php, I have the following:

This is for the "My Account" link:

<?php if (!($_SESSION['COWOA'])) { ?><?php if ($_SESSION['customer_id']) { ?><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo zen_customer_store_account(); ?></a><?php } ?><?php } ?> 	

This is for the "Log Out" link:

<?php if (!($_SESSION['COWOA'])) { ?><?php if ($_SESSION['customer_id']) { ?><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>">Logout</a></li><?php } ?><?php } ?> 

I do have a "Click here to end your session" link on my order confirmation page, which is really the log off link. That way they technically log out without really knowing there was an account created.

Also, just for the hell of it, I have the "Create Account" (or "Register") link disappear when a registered customer is logged in because I feel it is not necessary. Mine looks like:

<?php if (!$_SESSION['customer_id']) { ?><a href="<?php echo zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'); ?>">Register</a><?php } ?>

And it's also set so when a registered customer is logged in, it shows their name in "My Account"... example: "Sarah's Account".

Please back up your file before you make any of my changes. I hope they work for you, but some templates are weird and sometimes things go all screwy for some people.

If none of that pertained to your question, maybe the code I included can be used in your case, but in a different area, etc.????
I could maybe be a little bit more helpful if you have a link to the site if it happens to be online at the moment.

25 Sep 2011, 21:03
#1110
adamt avatar

adamt

New Zenner

Join Date:
Aug 2009
Posts:
18
Plugin Contributions:
0

Re: My Checkout Without Account Mod

I'm wanting to add Google Adwords conversion tracking code to my "checkout success" page. I understand the checkout success file is normally at /includes/languages/english/html_includes/define_checkout_success.php.

After installing Cowoa there is a new checkout success page located at /includes/templates/MY_TEMPLATE/templates/tpl_checkout_success_default.php.

So where exactly do I paste my Adwords Conversion code, to properly count all "converted customers", both from regular account checkouts and Cowoa checkouts? Confused.

26 Sep 2011, 01:41
#1111
craftzombie avatar

craftzombie

Zen Follower

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

Re: My Checkout Without Account Mod

AdamT:

I'm wanting to add Google Adwords conversion tracking code to my "checkout success" page. I understand the checkout success file is normally at /includes/languages/english/html_includes/define_checkout_success.php.

After installing Cowoa there is a new checkout success page located at /includes/templates/MY_TEMPLATE/templates/tpl_checkout_success_default.php.

So where exactly do I paste my Adwords Conversion code, to properly count all "converted customers", both from regular account checkouts and Cowoa checkouts? Confused.

COWOA does not install a new checkout success page. That page is always there and comes with the core Zen files. You are confusing language files with template files... those two checkout success files do different things.

Anyway, it's been so long since I added my Google code to my files so I had to use the Developers Tool Kit to try and find where I put my code. I do not have Google code on the checkout success page. Mine is located at includes/templates/your_template/common/tpl_main_page.php and is placed at the bottom of the page right before </body>.

26 Sep 2011, 05:13
#1112
adamt avatar

adamt

New Zenner

Join Date:
Aug 2009
Posts:
18
Plugin Contributions:
0

Re: My Checkout Without Account Mod

I'm talking about Google Adwords conversion tracking code, not Google Analytics. I figured it out. The conversion code goes at the end of the includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_success_default.php file.

03 Oct 2011, 21:34
#1113
kammon avatar

kammon

New Zenner

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

Re: My Checkout Without Account Mod

Hello!

I have installed (and re-installed) COWOA 2-0c1 with ZC 1.3.9, and I have searched this thread but not found a discussion of the issues I am having.

  1. In testing, the emails providing the link to view order status (using an email address and order#) take me to the login page. There is no option to login in without an account when following the link provided in the email confirmation. It appears that the link is correct (it references account_history_info), but that page does not appear.

  2. The initial checkout page "merges" the end of "New Customer? Please enter your checkout information" with "Returning Customers". "information" and "Returning Customers" occupy the same space.

11 Oct 2011, 18:01
#1114
jacobbushnell avatar

jacobbushnell

New Zenner

Join Date:
Mar 2010
Location:
Bonners Ferry, Idaho
Posts:
69
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Hello, I installed COWOA on 1.3.9h. Windows IIS7.

It all seems to install fine and I enabled it in the Admin / Configuration / COWOA

But it does not show up on the login page when I go to checkout. I have tried reuplaoding the files, and made sure I modified the YOUR_TEMPLATE folder to my template name.

Any ideas out there why its not showing up?

Thank you,
Jacob Bushnell

01 Nov 2011, 15:50
#1115
creativeone avatar

creativeone

New Zenner

Join Date:
Mar 2005
Posts:
58
Plugin Contributions:
0

Re: My Checkout Without Account Mod

I have installed COWOA on my zencart 1.3.9h site. Everything seemed to install great and I made sure to change YOUR_TEMPLATE etc. Followed everything to a t. I don't see COWOA in admin config section and no option to checkout without account on checkout page. Baffled. Any help appreciated.
http://seedandbread.org/shop2/

01 Nov 2011, 15:55
#1116
jacobbushnell avatar

jacobbushnell

New Zenner

Join Date:
Mar 2010
Location:
Bonners Ferry, Idaho
Posts:
69
Plugin Contributions:
0

Re: My Checkout Without Account Mod

creativeone, when ever I have a baffling problem I usually try re-uploading my files. Several times before I have had files corrupted in the ftp transfer.

Hope that helps,
Jacob

01 Nov 2011, 16:07
#1117
creativeone avatar

creativeone

New Zenner

Join Date:
Mar 2005
Posts:
58
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Thanks for the response but it didn't seem to help. Still no COWOA in admin to turn on or off and when I checkout I get this page
http://seedandbread.org/shop2/index.php?main_page=login

01 Nov 2011, 16:16
#1118
jacobbushnell avatar

jacobbushnell

New Zenner

Join Date:
Mar 2010
Location:
Bonners Ferry, Idaho
Posts:
69
Plugin Contributions:
0

Re: My Checkout Without Account Mod

I have had plenty of trouble getting the the free COWOA mod to work for various reasons.

I would suggest looking at the Numinix paid checkout module: https://www.numinix.com/zen-cart-modules/checkout/fast-and-easy-ajax-checkout-for-zen-cart-d-797

It have the COWOA option built in.
I have purchased their modules for 3 other carts before and they worked pretty nice. If you have problems they do offer support.

Thank you,
Jacob

01 Nov 2011, 16:21
#1119
creativeone avatar

creativeone

New Zenner

Join Date:
Mar 2005
Posts:
58
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Thanks for trying to help. My client has an extremely limited budget so I am trying to get the free version to work.

02 Nov 2011, 23:09
#1120
chriskelm1 avatar

chriskelm1

New Zenner

Join Date:
Nov 2007
Location:
Buffalo, NY
Posts:
16
Plugin Contributions:
0

Re: My Checkout Without Account Mod

Okay, I have installed this MOD and the only problem I am having is on the ADMIN side of updating order status.

When trying to update an order status in Admin, I am receiving the following error: Fatal error: Call to undefined function zen_date_diff() in /home/directoryofsite/public_html/adminfolderhere/orders.php on line 217

Zen Cart Version 1.3.8a
Patch: 1
Server OS: Linux 2.6.18-238.19.1.el5
PHP Version: 5.2.16 (Zend: 2.2.0)
Database: MySQL 5.0.92