-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
mleahy
Hi,
I have been using COWOA since December and just now noticed that the MyAccount and Logoff links are not showing in the header, even when you have logged in as a registered user. I don't think this is the way it is supposed to behave...
That is how it is supposed to behave. A person who is using COWOA doesn't want to have a normal account and therefore would not need to have a "My Account" or "Logoff" link.
*Edit.... just saw the part about "even when you have logged in as a registered user"...OOPS!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
mleahy
Hi,
I have been using COWOA since December and just now noticed that the MyAccount and Logoff links are not showing in the header, even when you have logged in as a registered user. I don't think this is the way it is supposed to behave. Following is the Navigation section of my tpl_header.php file where I added the COWOA mod as recommended in the install.txt file. Any suggestions? I have even tried turning COWOA off in Admin and testing it and it still doesn't show the Logoff or MyAccount link when I am logged in:
<!-- ========== NAVIGATION LINKS ========== -->
<a href="<?php echo HTTP_SERVER . DIR_WS_CATALOG ?>"><?php echo HEADER_TITLE_CATALOG; ?></a>
<!-- mleahy- modified following line for COWOA installation. -->
<?php if (($_SESSION['customer_id']) && (!$_SESSION['COWOA']=='True')) { ?>
| <a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a>
| <a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a>
I could be wrong, but I'm not sure that a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"> is the correct way to do it. Is it supposed to be contained within the a href part?? When I look at mine, it's like this:
<?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 } ?>
You see what I'm saying?? The code is put entirely before you get to the a href part.
My logoff looks like:
<?php if (!($_SESSION['COWOA'])) { ?><?php if ($_SESSION['customer_id']) { ?> <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>">Logout</a></li><?php } ?><?php } ?>
-
Re: 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:
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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:
www.naughticorner.com
Thanks!
Michelle 8-)
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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:
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....
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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-)
-
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:
-
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:
-
Re: My Checkout Without Account Mod
well Friends i have restored the site using the backup,thanks
-
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?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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:
Code:
<?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:
Code:
<?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:
Code:
<?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.
-
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.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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>.
-
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.
-
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.
-
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
-
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/
-
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
-
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
-
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-mod...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
-
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.
-
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
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
chriskelm1
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
Okay, im the novice... installed the 1.3.9 version on 1.3.8a.... Sorry for wasting anyone's time!
-
Re: My Checkout Without Account Mod
Hi there,
We have a large problem with logging in in combination with cowoa in our 1.3.8 shop. I've tried using the search function on this topic, but I get no matches or a trillion matches on my key words. Please forgive me if my problem has been noted by someone else before.
We use an old version of cowoa, but I can't find what version it is, going throuh the files on our website.
This is the problem, which costs us lots of orders because customers break of the order process.
When I do a purchase without account with an email address, p.e. cowoa AT shop DOT com it goes without problems.
Then I return and do another purchase, but I make an account using the same email address cowoa AT shop DOT com this also goes without problems.
When I than return for my third order, I try to login with this same email address and the chosen password, the shop does not recognize me and sais: Sorry, for this combination email address/password there is no login found.
When I, as the shop owner, go to the account used to do the purchase without account and change the email address from cowoa AT shop DOT com to anything else, like qqqcowoa AT shop DOT com, the user can login again.
Does anyone recognize this and does anyone know what we can do to change this? We would be gratefull!
Cheers, Frank.
-
Re: My Checkout Without Account Mod
I recently installed the COWOA mod onto my website. The admin page displays that it has been uploaded and is turned on. However, when I add something to the shopping cart and go to checkout the only options are to use an existing account or create an account. It has no option to check out without an account. I have tried re uploading the files multiple times and just cant seem to figure out the problem. Thanks for any help you can provide.
-
Re: My Checkout Without Account Mod
Please could someone confirm how this mod works with items marked free? I have designed a site for a client using Zen Cart 1.3.9, with the No Prices mod (all items are marked "Free" and "Virtual").
It is a furniture hire site, using Zen to create a hire list within the cart which is emailed to the owner for a formal quote.
www.furnitureonthemove.co.uk
There is no need for an account to check out, so this mod sounds perfect. All the information the owner requires is an email address, name and phone number. I have used the comment box to request the dates and address of the venue, which is also required. As all the products are free, no billing information is needed and at the moment the site works fine except for the need to create and account to checkout.
Does this mod skip the billing information pages if all items are free?
Is it possible to edit the shipping information page to only request the details I outlined above? All items are marked "virtual, as requested by the No Prices mod, will this be a problem?
I understand I will have to edit some of the files anyway to remove all references to prices again.
Any help would be appreciated!
-
Re: My Checkout Without Account Mod
On looking at the script in tpl_modules_no_account, I see that if the cart's total is 0, then all that is requested is an email address. As I require a little more information, would I just copy and paste the fields needed from further down the page (to put it simply)?
-
Re: My Checkout Without Account Mod
Quote:
Please could someone confirm how this mod works with items marked free? I have designed a site for a client using Zen Cart 1.3.9, with the No Prices mod (all items are marked "Free" and "Virtual").
It is a furniture hire site, using Zen to create a hire list within the cart which is emailed to the owner for a formal quote.
www.furnitureonthemove.co.uk
After much trial and error I have got the mod to work almost as I want. I hope someone can help with these last two bits!
1. The "no account" page now requests email, name, company and phone number (all included in the confirmation email). How do I include the comments box on this page too? I've worked out how to include the comment box on the page, but on the "review" page no comments are included. How do I get it to work so the information is carried over, shown on the "review" page and sent in the email?
2. If I can get the above to work, how do I skip the payment page? All items are marked virtual and free, so really it should be skipping both the shipping and payment pages, but at the moment it only skips the shipping page.
Thanks!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Mammoth
2 - From within Admin the default centre top box that lists customers (Modded by the COWOA sql script so it lists COWOA customers) is a bit agricultural...any thoughts re tidying this up would be appreciated.
i.e. displays the sql names
BOX_TITLE_CUSTOMERS
BOX_ENTRY_CUSTOMERS_TOTAL 147
BOX_ENTRY_CUSTOMERS_NORMAL 146
BOX_ENTRY_CUSTOMERS_COWOA 1
BOX_ENTRY_CUSTOMERS_TOTAL_DISTINCT 147
BOX_ENTRY_CUSTOMERS_NORMAL 146
BOX_ENTRY_CUSTOMERS_COWOA_DISTINCT 1
i had the same problem and got it fixed by copying COWOA.php
to
admin/includes/languages/dutch/extra_definitions/
admin/includes/languages/english/extra_definitions/
now its working ok !
not sure if it has to go in both dirs but thats what i did :clap:
1.3.8
-
Re: My Checkout Without Account Mod
Does anyone know if this mod works with newest zencart version 1.5?
Trying a fresh install on a fresh 1.5 and so far I can't get it to even show up on the checkout page (split login is set to "true".) Wondering if it's because it's not compatible or because I did something incorrect.
Thanks!
-
Re: My Checkout Without Account Mod
All mods that have admin control pages will need to take account of new v1.5 page registration methods. If this has not yet been done, it will probably not be usable.
-
Re: My Checkout Without Account Mod
I am trying to install the COWA I have it loaded on my localhost, and it worked just fine, However when adding the sql on the hosted server I will not let me alter tables. I get I error that states something like can't alter table there is no table customers
My site was down due to no connection to the database and it would not restore my backup. I had to add a new database - upload the backup to it and change configure files.
I have downloaded a backup copy of my database and want to insert into the sql backup and then add the patch by pasting into the query window.
The zen cart version on my hosted server is 1.3.8
version on localhost is 1.3.9
This is my table customer
Code:
DROP TABLE IF EXISTS `customers`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `customers` (
`customers_id` int(11) NOT NULL auto_increment,
`customers_gender` char(1) NOT NULL default '',
`customers_firstname` varchar(32) NOT NULL default '',
`customers_lastname` varchar(32) NOT NULL default '',
`customers_dob` datetime NOT NULL default '0001-01-01 00:00:00',
`customers_email_address` varchar(96) NOT NULL default '',
`customers_nick` varchar(96) NOT NULL default '',
`customers_default_address_id` int(11) NOT NULL default '0',
`customers_telephone` varchar(32) NOT NULL default '',
`customers_fax` varchar(32) default NULL,
`customers_password` varchar(40) NOT NULL default '',
`customers_newsletter` char(1) default NULL,
`customers_group_pricing` int(11) NOT NULL default '0',
`customers_email_format` varchar(4) NOT NULL default 'TEXT',
`customers_authorization` int(1) NOT NULL default '0',
`customers_referral` varchar(32) NOT NULL default '',
PRIMARY KEY (`customers_id`),
KEY `idx_email_address_zen` (`customers_email_address`),
KEY `idx_referral_zen` (`customers_referral`(10)),
KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
KEY `idx_nick_zen` (`customers_nick`),
KEY `idx_newsletter_zen` (`customers_newsletter`)
) ENGINE=MyISAM AUTO_INCREMENT=274 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
Would I just add to the code?
COWOA_account tinyint(1) NOT NULL default 0;
and would I need some commas around.
and do the same for the orders and then what would I do with the code?
Or is there a better suggestion?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
ms paperlicious
Does anyone know if this mod works with newest zencart version 1.5?
Trying a fresh install on a fresh 1.5 and so far I can't get it to even show up on the checkout page (split login is set to "true".) Wondering if it's because it's not compatible or because I did something incorrect.
Thanks!
I have the same issue...I am guessing that it's not compatible with the 1.5. Loved the mod in my last cart and am hoping that someone will update to make it usable with the new version!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
BALCO
I have the same issue...I am guessing that it's not compatible with the 1.5. Loved the mod in my last cart and am hoping that someone will update to make it usable with the new version!
Well since this mod doesn't really have an "owner/developer" it might be a while before it's updated for v1.5.. If it's vital to your business, you might consider investing in the cost of paying someone to update this mod for you.. or even having a crack at the updates yourself..
-
Re: My Checkout Without Account Mod
The zen cart version on my hosted server is 1.3.8
version on localhost is 1.3.9
1.3.9 works but the hosted server does not
My question i more a sql question about dropping a the table and inserting the code and then adding the table back.
I think it is a host issue that won't allow a table to be altered. Good for me as it doesn't allow hackers to alter my sql but bad for me.
I don't know about sql. Maybe I should post in a forum for sql experts.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
DivaVocals
Well since this mod doesn't really have an "owner/developer" it might be a while before it's updated for v1.5.. If it's vital to your business, you might consider investing in the cost of paying someone to update this mod for you.. or even having a crack at the updates yourself..
I wish I had the knowledge to update it and would if I could. It is not vital for my cart but a nice mod for those that don't want to create an account. I will function fine without it though and love the changes in 1.5...big changes from my other cart!
-
Re: My Checkout Without Account Mod
Does anyone know where I can find the latest version of the download? The links on http://www.zen-cart.com/wiki/index.p...ithout_Account are invalid.
-
Re: My Checkout Without Account Mod
You can download it from the contributions page here: http://www.zen-cart.com/index.php?ma...oducts_id=1655
OR, if you want a bit more functionaltiy and or need a mod fully compatible with 1.5.0 you can install the Esay Checkout mod from Numinix: https://www.numinix.com/zen-cart-mod...27edf630ac40dd
HTL,
Jacob
-
Re: My Checkout Without Account Mod
Hello,
I installed successfully the mod, but I have just one question -
I have 2 languages in my cart, how can I adapt the COWOA mod to work not only in the English version, but the French as well?
(Are there any translations out there?)
Thanks
-
Re: My Checkout Without Account Mod
Make copies of the english folders and then change the names to french and paste them in your french language folders
-
Re: My Checkout Without Account Mod
I was just curious if there was a way to have only one payment and shipping option just for the COWOA customers? We have log in customers and that works great, but I need to find a way so that people without accounts can pay and get things shipped with only one module each.
-
Re: My Checkout Without Account Mod
I don't know of any pre-built modules that would do that
You could do it by running some custom code to hide the payment method when they are not logged in with a registered account.
I would suggest hiring a freelance programmer. It would probably cost less than $100.
I use Odesk.com but there are several other freelance sites as well.
Jacob
-
Re: My Checkout Without Account Mod
Thats what I thought. Thanks for the reply. Thats a bummer.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
pkilemidwest
Thats what I thought. Thanks for the reply. Thats a bummer.
It's the reality that is free open source add-ons contributed by volunteers.. It is, as Popeye said "I am what I am"
If you want features not included in and add-on you can either wait for a volunteer to add that feature
OR
you can invest in a developer and add the features you want..
-
Re: My Checkout Without Account Mod
I would like to change the way that the split login page looks. This is the page that comes up when you add an item to the cart and then click on checkout.
What I would like is to move the PayPal option down under the register area. Making the register option first and thenthe PayPal the then COWA option.
http://www.rjfinewood.com/wood-tissu...tloginpage.jpg[IMG]http://www.rjfinewood.com/wood-tissu.../loginpage.jpg
-
Re: My Checkout Without Account Mod
I have my store set up so that all customers get assigned to a discount group when they create an account. I'm wondering if there is there any way to assign COWOA to a discount group?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
abcisme
I have my store set up so that all customers get assigned to a discount group when they create an account. I'm wondering if there is there any way to assign COWOA to a discount group?
Technically NO since they don't have an "account"
-
Re: My Checkout Without Account Mod
Is there any way to automatically give a discount to all COWOA customers that you could think of?
Ideally, what I'd like to do is somehow implement this: http://www.zen-cart.com/forum/showthread.php?t=123132
-
1 Attachment(s)
Re: My Checkout Without Account Mod
Hi everyone,
I'm having a little difficulty installing COWA, particularly step 1A. The string I'm looking for isn't in the header_tpl.php file. Maybe I'm looking at the wrong header_tpl.php file but the only one I found is in \includes\templates\zencart_zen\common.
I also can't find COWA in the Admin panel. It says it should be on the Configuration page but I can't find anything in regards to it. :/
Thanks for the help!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Shazbot
I also can't find COWA in the Admin panel. It says it should be on the Configuration page but I can't find anything in regards to it. :/
COWOA has not been updated to work with Zen Cart 1.5, so if you use 1.5 it is not surprising you don't see it in the admin.
-
Re: My Checkout Without Account Mod
:facepalm: Thanks, Design75. I'll look into using a previous version of Zen Cart and see if there are any serious security vulnerabilities.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Shazbot
Hi everyone,
I'm having a little difficulty installing COWA, particularly step 1A. The string I'm looking for isn't in the header_tpl.php file. Maybe I'm looking at the wrong header_tpl.php file but the only one I found is in \includes\templates\zencart_zen\common.
I also can't find COWA in the Admin panel. It says it should be on the Configuration page but I can't find anything in regards to it. :/
Thanks for the help!
What version of zen cart are you using?
-
Re: My Checkout Without Account Mod
I'm using the latest version, 1.5.
Perhaps COWA won't show up without editing the string in header_tpl.php. I doubt it, since that's not really what header_tpl.php is for, as far as I know, but maybe COWA depends on it to run properly.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Shazbot
I'm using the latest version, 1.5.
Perhaps COWA won't show up without editing the string in header_tpl.php. I doubt it, since that's not really what header_tpl.php is for, as far as I know, but maybe COWA depends on it to run properly.
I have upgraded COWOA and need a couple more testers. If your interested in testing let me know.
-
Re: My Checkout Without Account Mod
Hi everyone.
We love this mod, but as our stores grew we were having issues.
Basically the problem was that we couldn't identify which accounts were created as COWOA and which were permanent, so we added this piece of code to tpl_modules_no_account.php right below the privacy conditions section.
PHP Code:
<?php
if (CUSTOMERS_REFERRAL_STATUS == 2) {
?>
<?php echo zen_draw_hidden_field('customers_referral', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_referral', '15') . ' id="customers_referral" value="COWOA"'); ?>
<?php } ?>
What this code does is hide the customer referral box from being seen and adds the COWOA value in the database as the referral code for the account.
For this to work even better we added an extra column to the customers.php admin page, so it's easy to identify which are regular accounts and which are temporary accounts. Any account with COWOA as a referral code is easy to spot and we don't have to waste time giving discount codes to these accounts when we're running a promotion. Saves us time and money.
Anyways, we thought this would be a good contribution for anyone using the COWOA mod, who spends countless hours identifying temporary accounts from permanent ones.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
mvstudio
Hi everyone.
We love this mod, but as our stores grew we were having issues.
Basically the problem was that we couldn't identify which accounts were created as COWOA and which were permanent, so we added this piece of code to tpl_modules_no_account.php right below the privacy conditions section.
PHP Code:
<?php
if (CUSTOMERS_REFERRAL_STATUS == 2) {
?>
<?php echo zen_draw_hidden_field('customers_referral', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_referral', '15') . ' id="customers_referral" value="COWOA"'); ?>
<?php } ?>
What this code does is hide the customer referral box from being seen and adds the COWOA value in the database as the referral code for the account.
For this to work even better we added an extra column to the customers.php admin page, so it's easy to identify which are regular accounts and which are temporary accounts. Any account with COWOA as a referral code is easy to spot and we don't have to waste time giving discount codes to these accounts when we're running a promotion. Saves us time and money.
Anyways, we thought this would be a good contribution for anyone using the COWOA mod, who spends countless hours identifying temporary accounts from permanent ones.
In the latest version it already shows the difference between a COWOA and regular customers. I haven't uploaded it yet because I need a few more testers to install it on a zen cart v1.5.0 site.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
mvstudio
Hi everyone.
We love this mod, but as our stores grew we were having issues.
Basically the problem was that we couldn't identify which accounts were created as COWOA and which were permanent, so we added this piece of code to tpl_modules_no_account.php right below the privacy conditions section.
PHP Code:
<?php
if (CUSTOMERS_REFERRAL_STATUS == 2) {
?>
<?php echo zen_draw_hidden_field('customers_referral', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_referral', '15') . ' id="customers_referral" value="COWOA"'); ?>
<?php } ?>
What this code does is hide the customer referral box from being seen and adds the COWOA value in the database as the referral code for the account.
For this to work even better we added an extra column to the customers.php admin page, so it's easy to identify which are regular accounts and which are temporary accounts. Any account with COWOA as a referral code is easy to spot and we don't have to waste time giving discount codes to these accounts when we're running a promotion. Saves us time and money.
Anyways, we thought this would be a good contribution for anyone using the COWOA mod, who spends countless hours identifying temporary accounts from permanent ones.
Which version COWOA are you running?
I thought something like this was introduced in IntegratedCOWOA_20c2, including the extra column admin customer page, but will have to check.
-
Re: My Checkout Without Account Mod
If it has already been added to the latest versions, then disregard.
Those with old version of both COWOA and zencart, can still find it useful nonetheless.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
mvstudio
If it has already been added to the latest versions, then disregard.
Those with old version of both COWOA and zencart, can still find it useful nonetheless.
Yes they can thank you.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
mvstudio
If it has already been added to the latest versions, then disregard.
Those with old version of both COWOA and zencart, can still find it useful nonetheless.
OK. The differences in code are as follows:
Add the following code to tpl_modules_no_account.php right below the privacy conditions section"
Code:
<?php
if (CUSTOMERS_REFERRAL_STATUS == 2) {
?>
<?php echo zen_draw_hidden_field('customers_referral', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_referral', '15') . ' id="customers_referral" value="COWOA"'); ?>
<?php } ?>
My tpl_modules_no_account.php has the following code at the end:
Code:
<?php
if (CUSTOMERS_REFERRAL_STATUS == 2) {
?>
<fieldset>
<legend><?php echo TABLE_HEADING_REFERRAL_DETAILS; ?></legend>
<label class="inputLabel" for="customers_referral"><?php echo ENTRY_CUSTOMERS_REFERRAL; ?></label>
<?php echo zen_draw_input_field('customers_referral', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_referral', '15') . ' id="customers_referral"'); ?>
<br class="clearBoth" />
</fieldset>
<?php } ?>
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
dw08gm
OK. The differences in code are as follows:
Add the following code to tpl_modules_no_account.php right below the privacy conditions section"
Code:
<?php
if (CUSTOMERS_REFERRAL_STATUS == 2) {
?>
<?php echo zen_draw_hidden_field('customers_referral', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_referral', '15') . ' id="customers_referral" value="COWOA"'); ?>
<?php } ?>
My tpl_modules_no_account.php has the following code at the end:
Code:
<?php
if (CUSTOMERS_REFERRAL_STATUS == 2) {
?>
<fieldset>
<legend><?php echo TABLE_HEADING_REFERRAL_DETAILS; ?></legend>
<label class="inputLabel" for="customers_referral"><?php echo ENTRY_CUSTOMERS_REFERRAL; ?></label>
<?php echo zen_draw_input_field('customers_referral', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_referral', '15') . ' id="customers_referral"'); ?>
<br class="clearBoth" />
</fieldset>
<?php } ?>
The file that included this information is not in the tpl_modules_no_account.php file, it is in the admin/customer.php. On v1.5.0 on line 1186 and on v1.3.9 line 1169.
-
Re: My Checkout Without Account Mod
Hi Countrycharm
Sorry but I do not understand what you are saying.
I have the following code in the admin/customer.php v1.3.9h line 1169
Code:
<!-- bof COWOA2c #231 -->
<?php if ($customers->fields['COWOA_account'] == 1) { ?>
<td class="dataTableContent" align="center"><?php echo 'COWOA'; ?> </td>
<?php }else{ ?>
<td class="dataTableContent" align="center"><?php echo 'Normal';} ?> </td>
<!-- eof COWOA2c #231 -->
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
dw08gm
Hi Countrycharm
Sorry but I do not understand what you are saying.
I have the following code in the admin/customer.php v1.3.9h line 1169
Code:
<!-- bof COWOA2c #231 -->
<?php if ($customers->fields['COWOA_account'] == 1) { ?>
<td class="dataTableContent" align="center"><?php echo 'COWOA'; ?> </td>
<?php }else{ ?>
<td class="dataTableContent" align="center"><?php echo 'Normal';} ?> </td>
<!-- eof COWOA2c #231 -->
Hi all I was doing was showing you that the code mvstudio inserted in the tpl_modules_no_account.php file is not necessary because it has all ready being included in the IntegratedCOWOA_20c2 as you said, but it would benefit the one who has older versions installed. If they have and older version installed they need to upgrade for sure.
-
Re: My Checkout Without Account Mod
I just upgraded to v1.5 and added a gateway service (nmi) and need this functionality. What do I need to do to participate the in upgrade? Please let me know. Thanks in advance!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Picturemom
I just upgraded to v1.5 and added a gateway service (nmi) and need this functionality. What do I need to do to participate the in upgrade? Please let me know. Thanks in advance!
Check your PM.
-
Re: My Checkout Without Account Mod
I have installed the v1.5 environment and need to implement a "Checkout Without Account" facility for a download only product.
It's great to see so many posts on this topic but not sure which one is the most appropriate for a novice Zenner?
-
My Checkout Without Account Mod
I am running Zen Cart 1.3.9h. I have installed the COWOA and having one main problem. I switched the FORCED LOGOFF to TRUE. When testing the order status feature and typing in the order number and email address, there is no way to LOGOFF from the COWOA customer session. If I try to Login as a registered customer the My Account page shows and displays the COWOA customer details.
Please help.
-
Re: My Checkout Without Account Mod
So I'm definitely looking to add a Guest Checkout option to my site and it looks like that's what this does. I just installed Zen today so I have whatever the latest version is. The only things I've done are add some categories and products.
I'm a bit confused as to how to install this thing though since the instructions start by listing things about the template folder.
Are the instructions in the install.txt file still valid with the current version of Zen or do I have to make some changes? Can anyone point me in the right direction?
Thanks.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
kelemvor
So I'm definitely looking to add a Guest Checkout option to my site and it looks like that's what this does. I just installed Zen today so I have whatever the latest version is. The only things I've done are add some categories and products.
I'm a bit confused as to how to install this thing though since the instructions start by listing things about the template folder.
Are the instructions in the install.txt file still valid with the current version of Zen or do I have to make some changes? Can anyone point me in the right direction?
Thanks.
If you installed zen cart v1.5.0 or zen cart v1.5.1 you can download COWOA from here.
Welcome to the forums by the way..:laugh:
-
Re: My Checkout Without Account Mod
I just installed COWOA 2.2 on a site with ZC 1.5.0. ZC was auto-installed by hosting service, with admin files in /zcadmin. So I uploaded files from install /admin to /zcadmin. Yes I have override folders named /custom so put YOUR_TEMPLATE files in folders named /custom. Submitted sql patch and made other minor changes listed in install file.
Install file states: "Go to your Admin Configuration screen and open up COWOA". In my ZC admin/configuration there is no COWOA listed.
I checked via phpmyadmin and COWOA_account field is in customers table so according to another post, that means the patch "took".
Do I misunderstand where I am supposed to look for COWOA in the ZC config? Is there some place I have to change code because the admin files are in /zcadmin ?
Please advise!
ZC area of site is at www.westpac-ptg.org/zencart
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
bbarasa
I just installed COWOA 2.2 on a site with ZC 1.5.0. ZC was auto-installed by hosting service, with admin files in /zcadmin. So I uploaded files from install /admin to /zcadmin. Yes I have override folders named /custom so put YOUR_TEMPLATE files in folders named /custom. Submitted sql patch and made other minor changes listed in install file.
Install file states: "Go to your Admin Configuration screen and open up COWOA". In my ZC admin/configuration there is no COWOA listed.
I checked via phpmyadmin and COWOA_account field is in customers table so according to another post, that means the patch "took".
Do I misunderstand where I am supposed to look for COWOA in the ZC config? Is there some place I have to change code because the admin files are in /zcadmin ?
Please advise!
ZC area of site is at
www.westpac-ptg.org/zencart
If you need help and your running Zen Cart v1.5.0 or Zen Cart v1.5.1 Please ask your question over in the Cowoa Version 1.5.0 thread.
I will not be replying to anymore question on this thread. Please read the thread first because your question might have been covered already.
-
Re: My Checkout Without Account Mod
Hai,
My problem is
When I am making a purchase as a guest user. Once I fill all my details and say for some reason I am not able to complete order.Now if I want to say "sign in" with some existing account I will not be able to do it.
Even if I close the browser and agin try it will not allow me.Then only option will be Ineed to delete cookies and try again.
How can I solve this problem ?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
singam
Hai,
My problem is
When I am making a purchase as a guest user. Once I fill all my details and say for some reason I am not able to complete order.Now if I want to say "sign in" with some existing account I will not be able to do it.
Even if I close the browser and agin try it will not allow me.Then only option will be Ineed to delete cookies and try again.
How can I solve this problem ?
You need to roll back any changes you did before you installed Cowoa because you didn't install it right. You did make a backup didn't you?
Reinstall Cowoa making sure all files are in there correct place and you have merge the core files right. If you installed it right you will not have any problems what soever.
-
Re: My Checkout Without Account Mod
Hello,
I have installed COWOA for adding the checkout without account option on the checkout page. But it is not showing in the configuration menu in the admin side.Can you please tell me what would be the problem? Thanks in advance.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
atp29awr
Hello,
I have installed COWOA for adding the checkout without account option on the checkout page. But it is not showing in the configuration menu in the admin side.Can you please tell me what would be the problem? Thanks in advance.
Can you post a link showing us which version of the COWOA module you are using.
-
Re: My Checkout Without Account Mod
GENTLE reminder....
Quote:
Originally Posted by
countrycharm
If you need help and your running Zen Cart v1.5.0 or Zen Cart v1.5.1 Please ask your question over in the Cowoa Version 1.5.0 thread.
I will not be replying to anymore question on this thread. Please read the thread first because your question might have been covered already.
-
Re: My Checkout Without Account Mod
I just installed this mod, and it's partly working, but partly not. I've read through several dozen pages worth of posts, and my head is spinning. So rather than drive myself absolutely crazy going through 118 pages, I'm going to throw myself on the mercy of the forum, and simply ask for help. I apologize, in advance, if the answers to my questions have already been given, and I simply didn't find them.
>> STEP 1 - Change the "YOUR_TEMPLATE" directory names to the name of your actual template under the install/includes/templates.
Did this, no problem.
>> ****** STEP 1A has been Added
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.
>> ******
Small problem here, the tpl_header.php was not located in zencart\includes\templates\pinkywinky, it was located in the zencart\includes\templates\template_default\common\ folder. I made the required changes and uploaded them to the zencart\includes\templates\template_default\common\ folder.
>> STEP 2 - Upload the includes and admin directory to your zen cart directory.
That part went fine.
>> STEP 4 - Install the SQL Patch. To do this, open the file COWOA.sql.
Not sure what happened to Step 3, but I did this. The file was actually called COWOA_Full_Install.sql. The install.txt doc says it should have modified 14 files, but it only modified 12. Do I need to also install UPDATE_COWOA_2.sql and UPDATE_COWOA_2x to 2c.sql?
>> STEP 5 - In your admin section, under configuration>layout settings>use split-login page, you want it to say "true".
It does. :-)
>> STEP 6 - **** Add to your /includes/filenames.php file the following line: ****
define('FILENAME_ORDER_STATUS', 'order_status');
No problem there, and I uploaded it to the proper directory.
>> Step 7 - **** Go to your Admin Configuration screen and open up COWOA There are 3 configuations that need to be set to True or False.
Another problem: What COWOA? I logged out and back in again, twice, but I still don't see anything like this under any menu listing.
Final problem: The site looks as it should, and I like how it splits the customers on the Admin Home page into those with and without accounts. But...when I access the site (http://www.carnal-pleasures.com/zencart/ ... apologies in advance that it's an adult site...I'm only the programmer, please don't blame me!) it's not giving me a COWOA option. Doing a test purchase takes me to the same page as before I installed the mod.
Welcome, Please Sign In
New Customer? Please enter your checkout information here
Returning customers may benefit from creating an account with Carnal Pleasures which allows you to shop faster, track the status of your current orders, review your previous orders and take advantage of our other member's benefits.
Returning Customers
Carnal Pleasures account holders may login below.
Email Address:
Password:
Forgot your password?
There are no options to continue the purchase without creating an account.
I know I'm close...where did I go wrong?
THANK YOU, in advance, for your help!!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Scully
I just installed this mod, and it's partly working, but partly not. I've read through several dozen pages worth of posts, and my head is spinning. So rather than drive myself absolutely crazy going through 118 pages, I'm going to throw myself on the mercy of the forum, and simply ask for help. I apologize, in advance, if the answers to my questions have already been given, and I simply didn't find them.
>> STEP 1 - Change the "YOUR_TEMPLATE" directory names to the name of your actual template under the install/includes/templates.
Did this, no problem.
>> ****** STEP 1A has been Added
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.
>> ******
Small problem here, the tpl_header.php was not located in zencart\includes\templates\pinkywinky, it was located in the zencart\includes\templates\template_default\common\ folder. I made the required changes and uploaded them to the zencart\includes\templates\template_default\common\ folder.
>> STEP 2 - Upload the includes and admin directory to your zen cart directory.
That part went fine.
>> STEP 4 - Install the SQL Patch. To do this, open the file COWOA.sql.
Not sure what happened to Step 3, but I did this. The file was actually called COWOA_Full_Install.sql. The install.txt doc says it should have modified 14 files, but it only modified 12. Do I need to also install UPDATE_COWOA_2.sql and UPDATE_COWOA_2x to 2c.sql?
>> STEP 5 - In your admin section, under configuration>layout settings>use split-login page, you want it to say "true".
It does. :-)
>> STEP 6 - **** Add to your /includes/filenames.php file the following line: ****
define('FILENAME_ORDER_STATUS', 'order_status');
No problem there, and I uploaded it to the proper directory.
>> Step 7 - **** Go to your Admin Configuration screen and open up COWOA There are 3 configuations that need to be set to True or False.
Another problem: What COWOA? I logged out and back in again, twice, but I still don't see anything like this under any menu listing.
Final problem: The site looks as it should, and I like how it splits the customers on the Admin Home page into those with and without accounts. But...when I access the site (
http://www.carnal-pleasures.com/zencart/ ... apologies in advance that it's an adult site...I'm only the programmer, please don't blame me!) it's not giving me a COWOA option. Doing a test purchase takes me to the same page as before I installed the mod.
Welcome, Please Sign In
New Customer? Please enter your checkout information here
Returning customers may benefit from creating an account with Carnal Pleasures which allows you to shop faster, track the status of your current orders, review your previous orders and take advantage of our other member's benefits.
Returning Customers
Carnal Pleasures account holders may login below.
Email Address:
Password:
Forgot your password?
There are no options to continue the purchase without creating an account.
I know I'm close...where did I go wrong?
THANK YOU, in advance, for your help!!
1A. replace your orig file and load your edited file to yourtemplate rather than template_default.
2. Did you rename 'admin' folder to match YOUR admin folder?
-
Re: My Checkout Without Account Mod
Gentle reminder..
Quote:
Originally Posted by
countrycharm
If you need help and your running Zen Cart v1.5.0 or Zen Cart v1.5.1 Please ask your question over in the
Cowoa Version 1.5.0 thread.
I will not be replying to anymore question on this thread. Please read the thread first because your question might have been covered already.
Just to be clear.. The above referenced support thread is for the version of COWA that is available in the Zen Cart downloads section.. If you've installed the COWOA version from any other place on the internet including the version on the first page of THIS thread (Integrated Checkout Without Account), please note they ARE NOT the same module and you should NOT post questions related to Integrated Checkout Without Account on theCowoa Version 1.5.0 thread
-
Re: My Checkout Without Account Mod
I have searched for this in the thread and found nothing about it. When someone orders that has an account, I get a detailed invoice of what they ordered. That is what I need. When they checkout without an account, I just get a email from PayPal showing that they paid. Then I have to contact the buyer on what they ordered. How do I get it to where I can get a detailed invoice of a non account holder when they order?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
DivaVocals
Quote:
Originally Posted by
Raw Jigs
I have searched for this in the thread and found nothing about it. When someone orders that has an account, I get a detailed invoice of what they ordered. That is what I need. When they checkout without an account, I just get a email from PayPal showing that they paid. Then I have to contact the buyer on what they ordered. How do I get it to where I can get a detailed invoice of a non account holder when they order?
By installing the COWOA module.. this thread is NOT the support thread for COWOA it is the support thread for Integrated Checkout Without Account (NOT the same module).. I re-quoted my post that is on this page
-
Re: My Checkout Without Account Mod
This is the link I clicked after I downloaded this plugin, http://www.zen-cart.com/downloads.php?do=file&id=1115, that was where I clicked the support forum thread. I guess I will message the creator cause there is more then one problem I am having.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Raw Jigs
just means that the link points to the WRONG support thread.. So you can PM the author...
OR..
you can look through the correct support thread and see if the answer to your question is there (as the author may NOT respond to a PM for help)..
-
Re: My Checkout Without Account Mod
Hi Everyone,
1. Would anyone know why the bottom half of my website disappears when checking the order status after clicking on the email link? (the page after entering email address)
2. After being on the "order status" page, I can click on LogIn at the top and it will take me to the account page, is that supposed to be? I thought it is supposed to be disabled (it is disabled after checking out but not when coming back and checking on status).
Please advise.
Thank you.
-
Re: My Checkout Without Account Mod
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
willy12
Hi Everyone,
1. Would anyone know why the bottom half of my website disappears when checking the order status after clicking on the email link?
2. After being on the "order status" page, I can click on LogIn at the top and it will take me to the account page, is that supposed to be? I thought it is supposed to be disabled (it is disabled after checking out but not when coming back and checking on status).
Please advise.
Thank you.
hint hint..:smile:
Quote:
Originally Posted by
countrycharm
If you need help and your running Zen Cart v1.5.0 or Zen Cart v1.5.1
Please ask your question over in the Cowoa Version 1.5.0 thread.
I will not be replying to anymore question on this thread. Please read the thread first because your question might have been covered already.
-
Re: My Checkout Without Account Mod
I am running version 1.3.9h
Quote:
Originally Posted by
DivaVocals
hint hint..:smile:
-
Re: My Checkout Without Account Mod
Sorry for the double post, I messed up the quotes earlier.
Hi Everyone,
1. Would anyone know why the bottom half of my website disappears when checking the order status after clicking on the email link? (the page after entering email address)
2. After being on the "order status" page, I can click on LogIn at the top and it will take me to the account page, is that supposed to be? I thought it is supposed to be disabled (it is disabled after checking out but not when coming back and checking on status).
Please advise.
Version 1.3.9h
Thank you.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
willy12
I am running version 1.3.9h
Ahhhhhhhhhhhhhhhhhhhhhhhhhhh....
-
Re: My Checkout Without Account Mod
Anyone?
Any help would be appreciated.
Quote:
Originally Posted by
willy12
Hi Everyone,
1. Would anyone know why the bottom half of my website disappears when checking the order status after clicking on the email link? (the page after entering email address)
2. After being on the "order status" page, I can click on LogIn at the top and it will take me to the account page, is that supposed to be? I thought it is supposed to be disabled (it is disabled after checking out but not when coming back and checking on status).
Please advise.
Thank you.
-
Re: My Checkout Without Account Mod
if you go into your catalog/cache/ what is the most recent log file? (censor the URL if you wish)
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
bislewl
if you go into your catalog/cache/ what is the most recent log file? (censor the URL if you wish)
Thank you for your reply.
I have managed to fix one issue, issue #1 in my first post. The tpl_modules_os_downloads file was somehow corrupted via FTP and I re-uploaded it.
Problem #2 still stands and there is no cache error that might point to something. After entering the email, it shows everything fine but then if you click on the LogIn link it goes to the MyAccount page instead of blocking it (for lack of a better term).
Please advise.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
willy12
Thank you for your reply.
I have managed to fix one issue, issue #1 in my first post. The tpl_modules_os_downloads file was somehow corrupted via FTP and I re-uploaded it.
Problem #2 still stands and there is no cache error that might point to something. After entering the email, it shows everything fine but then if you click on the LogIn link it goes to the MyAccount page instead of blocking it (for lack of a better term).
Please advise.
I have also done this step as in the install instructions, with no luck:
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.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
edingtoncollection
I am running Zen Cart 1.3.9h. I have installed the COWOA and having one main problem. I switched the FORCED LOGOFF to TRUE. When testing the order status feature and typing in the order number and email address, there is no way to LOGOFF from the COWOA customer session. If I try to Login as a registered customer the My Account page shows and displays the COWOA customer details.
Please help.
Same problem here!!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
willy12
I have also done this step as in the install instructions, with no luck:
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.
Has anyone encountered this problem and found a solution?
-
Re: My Checkout Without Account Mod
After being on the "order status" page, I can click on LogIn at the top and it will take me to the account page, is that supposed to be? I thought it is supposed to be disabled (it is disabled after checking out but not when coming back and checking on status).
Please advise.
Version 1.3.9h
Thanks
-
Re: My Checkout Without Account Mod
Thanks for not responding. I fixed it myself!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
willy12
Thanks for not responding. I fixed it myself!
Sometime you have to do exactly that, track the problem down and fix it yourself. There's a lots of good people on the forum willing to help out, but we have other lives to and are not around all the time. If you don't get your answer just when you think you should please don't leave sarcastic remarks. That kind of attitude will not get you any help what soever.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
countrycharm
Sometime you have to do exactly that, track the problem down and fix it yourself. There's a lots of good people on the forum willing to help out, but we have other lives to and are not around all the time. If you don't get your answer just when you think you should please don't leave sarcastic remarks. That kind of attitude will not get you any help what soever.
**nods in agreement**:yes:
There have been occasions where I have answered my own post in the spirit of SHARING the answer in case it helped someone else.. This forum is full of helpful folks, but I get that all questions cannot be answered, and that people have lives.. So I NEVER take it personal or leave nasty comments when on occasion a question I ask goes unanswered..
-
Re: My Checkout Without Account Mod
Hi. So I tried installing the Guest Checkout Mod COWOA and I just couldn't get it to work. I tried to unistal it but got an error running the unistal. Not a problem, I just uploaded my backup of the database! I had made a backup of all the zencart files as well and reuploaded those pre-COWOA files.
STILL, when I click Add TO Cart I just get a blank page. the Error logs reads [24-Nov-2012 15:48:14] PHP Warning: Missing boundary in multipart/form-data POST data in Unknown on line 0
http://www.foursevenfive.com/index.p...product_id=319
Any IDEAS???
ZenCart V. 1.39h