-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
PlayscaleMinis
JTheed, not to be disrespectful, but DUH. :wink:
My point is that - from my clean backup - I've cut/pasted the codes as instructed five times now, each time with the same result.
I've left the site as-is right now, hoping that someone can tell me 1) if I did make a major mistake (and how to start looking for the problem), or 2) if the coding won't work with a fresh 1.3.9d install.
Well DUH lol, you may have left your sight as is, but did you leave a link to it ? Did you look at the log files?
I'll let CraftZombie answer your override question as this is her update to the mod. If you want to try mine (Because you say you are using a Clean 139 install) , just click on the MY MODS Site in my Signature ( of the Zen Cart files section here). You can even see the COWOA work there.
-
Re: My Checkout Without Account Mod
Thanks JTheed, I'll take a closer look after work (the day job, that is...)
Whoops, it hadn't occurred to me to find and read a log. Is it in the admin? I've never done this kind of programming before - I'm an HTML/graphics kind of gal.
The URL (not linked, I admit) was in the first post - playscaleminis.biz
Cheers,
Janean
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
PlayscaleMinis
Thanks JTheed, I'll take a closer look after work (the day job, that is...)
Whoops, it hadn't occurred to me to find and read a log. Is it in the admin? I've never done this kind of programming before - I'm an HTML/graphics kind of gal.
The URL (not linked, I admit) was in the first post -
playscaleminis.biz
Cheers,
Janean
Not to worry, this is how I learned/am learning it. The log files are stored in your cache folder. There are session and sql statements in there, look for the ones ending in .log.
-
Re: My Checkout Without Account Mod
Hi JTheed, your mod seems to be working for me for a clean 1.3.9 install. BUT PLEASE add to your install file a Step 7 - Turn the bleepin' thing ON in admin>config. I went through all sorts of mental gymnastics until I noticed COWOA added to that menu!!!!
Still building...
Janean
-
Re: My Checkout Without Account Mod
I take back the part about it working... I've got an endless loop. After filling out Billing Information, instead of continuing to Delivery Information, it loops back to the index.php?main_page=login page.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
PlayscaleMinis
I take back the part about it working... I've got an endless loop. After filling out Billing Information, instead of continuing to Delivery Information, it loops back to the index.php?main_page=login page.
Please go to this thread.
http://www.zen-cart.com/forum/showth...573#post899573
-
Re: My Checkout Without Account Mod
Hi, I'm a web designer, and last month a client asked me to convert her site to Zencart. Never had any experience with ZC, so the last two weeks have been a big learning curve. However, I'm now on top of it, develoiped a custom template and nearly got it ready.
My client didn't want customers to log in, so I was delighted when I found the COWOA mod. But my install appears to have a bug during the checkout. When you fill in the billing information, then click through to Step 2, it takes you to the default template, with the default stylesheet. And you stay within the default template until you log out.
Obviously I can solve this by overwriting the default template stylesheet with my custom CSS. But that seems very awkward - aren't you supposed to leave the default template files untouched? And why should the link direct to the default template folder anyway?
I've checked to make sure that all the YOUR_TEMPLATE files are in my custom folder. And I've read through most of this thread, but I can't seem to find anything that would help me.
Also I'd like to know how you can stop forcing COWOA customers to log off.
-
Re: My Checkout Without Account Mod
Thank you for this mod, it is working really well for me.
I have found one slight problem though.....
If a customer checks out without an account, then later signs up for a full account, you have two accounts with the same email address.
If I then send a gift certificate from admin, the customer gets 2 gift certificates with 2 different redemption codes!
You may be asking yourself why am I sending gift certificates? Well, I have a competition running where the prize is £30 of gift certificates.
I'm not sure if any emails that get sent from admin have this same problem but I'm guessing they would.
Has anyone come across this before and found a fix?
-
Re: My Checkout Without Account Mod
I think I've fixed the duplicate email address/duplicate email send bug.
Zen Cart doesn't usually allow more than one account to have the same email address so I needed to limit the number of emails sent to 1 if a specific email address was selected.
The duplicate emails can get costly when sending Gift Certificates from Admin :shocking:
In file includes/functions/audience.php, I have changed function get_audience_sql_query to:
Code:
function get_audience_sql_query($selected_entry, $query_category='email') {
// This is used to take the query_name selected in the drop-down menu or singular customer email address and
// generate the SQL Select query to be used to build the list of email addresses to be sent to
// it only returns a query name and query string (SQL SELECT statement)
// the query string is then used in a $db->Execute() command for later parsing and emailing.
global $db;
$query_name='';
$queries_list = $db->Execute("select query_name, query_string from " . TABLE_QUERY_BUILDER . " " .
"where query_category like '%" . $query_category . "%'");
// "where query_category = '" . $query_category . "'");
while (!$queries_list->EOF) {
if ($selected_entry == $queries_list->fields['query_name']) {
$query_name = $queries_list->fields['query_name'];
$query_string = parsed_query_string($queries_list->fields['query_string']);
//echo 'GET_AUD_EM_ADDR_QRY:<br />query_name='.$query_name.'<br />query_string='.$query_string;
}
$queries_list->MoveNext();
}
//if no match found against queries listed in database, then $selected_entry must be an email address
if ($query_name=='' && $query_category=='email') {
$cust_email_address = zen_db_prepare_input($selected_entry);
$query_name = $cust_email_address;
$query_string = "select customers_firstname, customers_lastname, customers_email_address
from " . TABLE_CUSTOMERS . "
where customers_email_address = '" . zen_db_input($cust_email_address) . "' limit 1";
}
//send back a 1-row array containing the query_name and the SQL query_string
return array('query_name'=>$query_name, 'query_string'=>$query_string);
}
All I added was the 'limit 1' code in red.
If an expert can take a look and let me know if my change will mess something else up I'd really appreciate it.
Otherwise, if all is ok (it looks good in my testing) and anyone else is facing the same duplicate email issues, the above should fix it.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
damiantaylor
I think I've fixed the duplicate email address/duplicate email send bug.
Zen Cart doesn't usually allow more than one account to have the same email address so I needed to limit the number of emails sent to 1 if a specific email address was selected.
The duplicate emails can get costly when sending Gift Certificates from Admin :shocking:
In file includes/functions/audience.php, I have changed function get_audience_sql_query to:
Code:
function get_audience_sql_query($selected_entry, $query_category='email') {
// This is used to take the query_name selected in the drop-down menu or singular customer email address and
// generate the SQL Select query to be used to build the list of email addresses to be sent to
// it only returns a query name and query string (SQL SELECT statement)
// the query string is then used in a $db->Execute() command for later parsing and emailing.
global $db;
$query_name='';
$queries_list = $db->Execute("select query_name, query_string from " . TABLE_QUERY_BUILDER . " " .
"where query_category like '%" . $query_category . "%'");
// "where query_category = '" . $query_category . "'");
while (!$queries_list->EOF) {
if ($selected_entry == $queries_list->fields['query_name']) {
$query_name = $queries_list->fields['query_name'];
$query_string = parsed_query_string($queries_list->fields['query_string']);
//echo 'GET_AUD_EM_ADDR_QRY:<br />query_name='.$query_name.'<br />query_string='.$query_string;
}
$queries_list->MoveNext();
}
//if no match found against queries listed in database, then $selected_entry must be an email address
if ($query_name=='' && $query_category=='email') {
$cust_email_address = zen_db_prepare_input($selected_entry);
$query_name = $cust_email_address;
$query_string = "select customers_firstname, customers_lastname, customers_email_address
from " . TABLE_CUSTOMERS . "
where customers_email_address = '" . zen_db_input($cust_email_address) . "' limit 1";
}
//send back a 1-row array containing the query_name and the SQL query_string
return array('query_name'=>$query_name, 'query_string'=>$query_string);
}
All I added was the 'limit 1' code in red.
If an expert can take a look and let me know if my change will mess something else up I'd really appreciate it.
Otherwise, if all is ok (it looks good in my testing) and anyone else is facing the same duplicate email issues, the above should fix it.
Change the query line to this:
Code:
$query_string = "select customers_firstname, customers_lastname, customers_email_address
from " . TABLE_CUSTOMERS . "
where customers_email_address = '" . zen_db_input($cust_email_address) . "'
and COWOA_account == '0'";
This way the accounts that used COWOA will not be included.
-
Re: My Checkout Without Account Mod
Thanks but wouldn't that stop me ever being able to email a COWOA customer though?
If a customer is COWOA only, I still want to be able to email them.
-
Re: My Checkout Without Account Mod
Hi,
I'm changing templates and COWOA works on my current template, however when switching templates COWOA disappears. I'm sure I've copied the files over correctly, but I'm still stumped.
Any ideas?
Thanks
1to1music.co.uk
-
Re: My Checkout Without Account Mod
i have installed the COWOA mod, but when i try to checkout through it, after filling out all the details, it give me an error: Your Telephone Number must contain a minimum of 3 characters.
I don't even have a phone field, but only a fax field, which is not required. Even if it is left blank, or i add more then 10 digits, it does not work. I can not go on the next page even if the fax field is blank.
any advise would be helpful. also how do i change the fax fiel to phone, and remove the DOB field.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
ztotheetothen
i have installed the COWOA mod, but when i try to checkout through it, after filling out all the details, it give me an error: Your Telephone Number must contain a minimum of 3 characters.
I don't even have a phone field, but only a fax field, which is not required. Even if it is left blank, or i add more then 10 digits, it does not work. I can not go on the next page even if the fax field is blank.
any advise would be helpful. also how do i change the fax fiel to phone, and remove the DOB field.
fixed it myself! admin . configuration . minimum values. Set from 3 to 0.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
damiantaylor
Thanks but wouldn't that stop me ever being able to email a COWOA customer though?
If a customer is COWOA only, I still want to be able to email them.
Yes, that is correct, but isn't that one of the reasons for a customer checking out without an account, so they don't receive unsolicited e-mails? This could give those customers on your site an incentive to create an account, tell them you do this for registered customers only.
JMHO.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
toaldingham
Hi,
I'm changing templates and COWOA works on my current template, however when switching templates COWOA disappears. I'm sure I've copied the files over correctly, but I'm still stumped.
Any ideas?
Thanks
1to1music.co.uk
Did you copy the files from the YOUR_TEMPLATE folder to your new template folder?
-
Re: My Checkout Without Account Mod
Embarrassingly i have downloaded this and reading the first part - step 1a, i have come to a stop!
STEP 1a says - In your custom template son your cart, edit the tpl_header.php file and look for this line.
<?php if (($_SESSION['customer_id']) { ?>
The bold bit does not make sense, but i looked in the includes/templates/my_template/common/tpl_header.php but cannot find any reference to that code.
I have installed add ons before, which is why it's embarrassing.
Can anyone help me past step 1a?
Tia
Paul
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
horsetags
Embarrassingly i have downloaded this and reading the first part - step 1a, i have come to a stop!
STEP 1a says - In your custom template son your cart, edit the tpl_header.php file and look for this line.
<?php if (($_SESSION['customer_id']) { ?>
The bold bit does not make sense, but i looked in the includes/templates/my_template/common/tpl_header.php but cannot find any reference to that code.
I have installed add ons before, which is why it's embarrassing.
Can anyone help me past step 1a?
Tia
Paul
Sorry, it is a modified header :-( - it's been a long day
-
1 Attachment(s)
Re: My Checkout Without Account Mod
I'm running 1.39d. I believe I successfully modified the templates/MyTemplate/Common/tpl_header.php. I don't think I missed uploading any of the files. I am stuck with two problems.
1. At the initial screen where the customer enters name, address and all the rest, clicking 'Continue Checkout' just brings you right back to this same page (with all the fields emptied). ...an endless loop.
2. There are no images... only references to them. (See screenshot.)
I guess I'll just turn it off for now. I would really like to get it working though. Any help/advice will be appreciated. - Thanks!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
JTheed
Did you copy the files from the YOUR_TEMPLATE folder to your new template folder?
JTheed, thanks for the reply! I did, at least i'm sure I did. I'll re-check and see how I get on. Many thanks,
Ciaran.
-
Re: My Checkout Without Account Mod
Hmmm...So I have done this, but still not luck. The login page changes shape, as if it's trying to accomodate the COWOA box, but still doesn't show it. I'm baffled! It works on my localhost, but not when I upload it. ?
When I check the HTML source code the only reference to COWOA is:
<!-- BOF COWOA -->
<!-- BOF COWOA -->
So it's recognising it in some way. Any suggestions
Thanks
-
Re: My Checkout Without Account Mod
Will the 1.3.9 version of COWOA work with 1.3.8a? - The 1.3.8. version of this mod doesn't seem to be available any more. :(
Thanks.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
charmedbytina2
The 1.3.8. version of this mod doesn't seem to be available any more. :(
Thanks.
1.3.8 is available here: http://www.zen-cart.com/wiki/index.p...ithout_Account
-
Re: My Checkout Without Account Mod
I am using 1.3.8 and has installed COWOA. However, my COWOA customers end up with a blank page: index.php?main_page=logoff,
The same happens when a registred customer tries to logout.
I've checked all the files I was asked to overwrite and everything seems okay. I've also checked that all files are where they should be. Can anyone help as this driving me crazy.
Many thanks in advance.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
PUREchocolatetruffle
I am using 1.3.8 and has installed COWOA. However, my COWOA customers end up with a blank page: index.php?main_page=logoff,
The same happens when a registred customer tries to logout.
I've checked all the files I was asked to overwrite and everything seems okay. I've also checked that all files are where they should be. Can anyone help as this driving me crazy.
Many thanks in advance.
COWOA has nothing to do with the logoff page. What other mods have you installed? Have you tried uploading the logoff page again from the regular Zen install files? Perhaps your files didn't transfer properly.
-
Re: My Checkout Without Account Mod
I have 1.3.9e and Integrated Cowoa (JTheed version) and working great except for the old problem of a customer buying with COWOA and then buying again and trying to register and Zen telling customer that they already have this email address.
I have tried to look through the threads, but can't find anything.
Any help would be great
Tia
Paul
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
FatGuyinAZ
Not sure how many of you have noticed the welcome email sent to anyone that checks out with this module has a coupon number listed for 10% off, which expired in 2007.
Here is the welcome email info:
I did a search of all the files installed with this module and in the
/includes/language/english/YOURTEMPLATE/no_account.php file on line 39 it says this:
PHP Code:
define('EMAIL_TEXT', 'With your account, you can now take part in the <strong>various services</strong> we have to offer you. Some of these services include:' . "\n\n" . '<li><strong>Permanent Cart</strong> - Any products added to your online cart remain there until you remove them, or check them out.' . "\n\n" . '<li><strong>Address Book</strong> - We can deliver your products to another address other than your own. This is perfect to send birthday gifts directly to the birthday-person themselves.' . "\n\n" . '<li><strong>Order History</strong> - View your history of purchases that you have made with us.' . "\n\n" . '<li><strong>Products Reviews</strong> - Share your opinions on products with our other customers.' . "\n\n" . 'Your Discount Coupon - As a thank you for joining our community, we\'ve included a 10% discount coupon. You may use this coupon once to get 10% off any order, large or small. It is good through December of 2007. The coupon code is \'08825bbc50\'. To use this code, enter it during checkout in the coupon entry field.' . "\n\n");
I hope this information helps somebody.
I know you posted this a long time ago, but thanks for this. I just installed COWOA, tested it, and freaked out a bit as I saw this in the welcome email. Thanks again.:clap:
-
Re: My Checkout Without Account Mod
Ok. I have a quick question for folks that are actually USING cowoa on current LIVE trading sites.
Roughly what percentage go for the checkout without account option?
Do folks in general believe it helps to reduce the levels of shopping cart abandonment.
I do like Zen Cart, but the current checkout process at the moment is just way too long and far too many pages for customers to endure. :huh:
-
Re: My Checkout Without Account Mod
I am running Zen Cart 1.39d and have installed COWOA. I am having a very difficult time. When someone clicks checkout they only get two options: to register or to log in. There is no COWOA option at all. Other than that the checkout operates perfectly, complete with the green arrows and progress bar.
In my Admin panel there is no listing whatsoever for COWOA. I suspect that if there was I could turn on the COWOA option.
I have gone through all of the files numerous times and am confident that all is right there. I suspect it is a database problem. I tried running the uninstall COWOA.sql and I receive a white screen with this:
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.
When I try to re-run the COWOA install sql I get this:
1062 Duplicate entry 'Permanent Account Holders Only' for key 2
in:
[INSERT INTO zen_query_builder ( query_id , query_category , query_name , query_description , query_string ) VALUES ( '', 'email,newsletters', 'Permanent Account Holders Only', 'Send email only to permanent account holders ', 'select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS where COWOA_account != 1 order by customers_lastname, customers_firstname, customers_email_address');]
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.
Is there a 'back door' in a file where I can turn COWOA on? I am at a loss as to what else I can try. Any help or advice would be greatly appreciated.
Thank you.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
craftzombie
COWOA has nothing to do with the logoff page. What other mods have you installed? Have you tried uploading the logoff page again from the regular Zen install files? Perhaps your files didn't transfer properly.
You're absolutely right and your idea worked spot on. A new upload of the logoff page cured the problem. Many, many thanks for your advice.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
horsetags
I have 1.3.9e and Integrated Cowoa (JTheed version) and working great except for the old problem of a customer buying with COWOA and then buying again and trying to register and Zen telling customer that they already have this email address.
I have tried to look through the threads, but can't find anything.
Any help would be great
Tia
Paul
If you had posted this in my thread for my version of COWOA
(http://www.zen-cart.com/forum/showthread.php?t=156174) you would have gotten an answer quicker.:D Anyway, here is the fix for that.
In /includes/modules/create_account.php look for this line around line 134:
Code:
$check_email_query = "select count(*) as total
from " . TABLE_CUSTOMERS . "
where customers_email_address = '" . zen_db_input($email_address) . "'";
Change it to read like this (the and line is added)
Code:
$check_email_query = "select count(*) as total
from " . TABLE_CUSTOMERS . "
where customers_email_address = '" . zen_db_input($email_address) . "'
and COWOA_account != 1";
This way when it searches thru the e-mails, if the record belongs to a COWOA customer, it gets skipped.
-
Re: My Checkout Without Account Mod
I'm sure this is simple, I just can't find it....
for some reason the definitions file isn't loading after the mod was isntalled...
I'm showing
box_title_customer
for the box heading of the customers box.... I'm going to double check and make sure all files were uploaded properly... anybody run into this before
-
Re: My Checkout Without Account Mod
Okay, I found the issue...
The package has the definitions file under the following direcotry
\includes\languages\english\extra_definitions
It must be under the admin defines as follows:
/admin/includes/languages/english/extra_definitions/
Not sure if that was just me messing it up....but it's fixed in case anyone else the issue
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
KGZotU
Alright, I've made the following modifications.
Fixed: IE button issues and cleaned up button code in general. Conditionally removed account/order invoice references from email. Conditionally removed product update notification and account references from checkout_success.
These are reflected in the store and the zip file.
--Joe
I've been working on my site for some time. I am now in Authorize.net testing mode for my new merchant account, and should go "live" any day now.......
I'm working on a few big issues that I want to fix first, and the MAIN issue is the "creation of an account" requirement. Although I'm sure this is a good thing, I KNOW this will run off a lot of customers (it would run me off).
So I was looking for a add-on that will streamline the process, and still give the customer the OPTION of creating an account. Doing a search, I found this thread, and I am happy to find it! I will certainly download and install this on my test site, and eventually onto my project site.
I will write back to you and tell you how this is going. I'm a new Zenner, so installing modules is kind of scary. But I've already added a couple, and they don't seem to be exceptionally difficult.....
-
Re: My Checkout Without Account Mod
I finally got this installed. I was using Fast and Easy Checkout before and I installed it over a year ago and have been using it with my current template. I decided to create a new template and somehow lost everything and couldnt find the old files. I decided to try COWA because that's all I really need. It was difficult to install with all of the extra mods I have, but I finally got it and tested it and it is working great.
The only problem I have is the "Newsletter and Email Details" section that asks HTML or text email. To customers this would appear that they are forced to signup for the newsletter if they checkout without an account. My question is, how do I disable this section alltogether? I know it doesn't add to the newsletter because I tested it, but I would like to remove the section and just have it send the emails text only.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
dgarrett20
I finally got this installed. I was using Fast and Easy Checkout before and I installed it over a year ago and have been using it with my current template. I decided to create a new template and somehow lost everything and couldnt find the old files. I decided to try COWA because that's all I really need. It was difficult to install with all of the extra mods I have, but I finally got it and tested it and it is working great.
The only problem I have is the "Newsletter and Email Details" section that asks HTML or text email. To customers this would appear that they are forced to signup for the newsletter if they checkout without an account. My question is, how do I disable this section alltogether? I know it doesn't add to the newsletter because I tested it, but I would like to remove the section and just have it send the emails text only.
I just changed it to Email Details in the english language file. That should work fine.
-
Re: My Checkout Without Account Mod
I have installed this mod, but I am having some problem with it.
So far the problem I found is
When I try to checkout without account, I filled all the information -name,phone#,shipping address etc...then I hit continue checkout, all those info i just put in are all gone, and stays at the same page, just like you refresh a page.
I have 3 php scripts is visible on the page
1. Home :: NAVBAR_TITLE
2.
just above the green arrow showing
TEXT_ORIGIN_LOGIN
3. right to the continue checkout bottom
TITLE_CONTINUE_CHECKOUT_PROCEDURE
TEXT_CONTINUE_CHECKOUT_PROCEDURE
I have v1.3.9d ,PHP Version: 5.2.14 (Zend: 2.2.0)
thank you eveyone
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
vip_peng
...then I hit continue checkout, all those info i just put in are all gone, and stays at the same page, just like you refresh a page.
it just sounds like you have some files missing due to an error during upload. try reinstalling. and make sure you installed the sql files too.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
craftzombie
it just sounds like you have some files missing due to an error during upload. try reinstalling. and make sure you installed the sql files too.
I already fixed, i forgot to change 2 folders name to my own template name
-
Re: My Checkout Without Account Mod- Not Working
I tried a few days ago to install the COWA module to my test site.
When I check out, it goes to a page that requires for me to either sign up for an account, or log in.
So, today, I reinstalled it. I did not install the SQL patch again, as I'm sure it's still there. Same result.
Obviously this is not working.
The installation procedure I used:
1) I removed from the install/includes directory the YOUR_TEMPLATE directory, as I have no customized/override templates in this test site. I will rename this directory to match my override directory and include it when I actually put this in my project site (if I ever get to that point-- ha ha)-- anyway, that's what the instructions said to do......
2) 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 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)
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 ; )
4) I added the define('FILENAME_ORDERS_STATUS'); to the includes/filename.php file. I put it as the last line on the page.
5) I went to the Admin, configuration, and there is no COWOA selection available. I could not set the three parametrs as specified.....
Any help would be appreciated............I'm determined to add this module...
:shocking:
-
Re: My Checkout Without Account Mod
How any customer do the shopping without account using zen-cart 1.3.8a. can any one tell me???:smile:
Tabish
-
Re: My Checkout Without Account Mod- Not Working
Quote:
Originally Posted by
JDog21
..... When I check out, it goes to a page that requires for me to either sign up for an account, or log in....
It is supposed to do that. Checkout will always take you to the login page because its giving the customer the opportunity to create an account if they want to. After installing COWOA, there should be a Guest Checkout section added to the login page (when there are items in the cart). They'll have to click on that to enter the COWOA phase.
If you want to make your cart strictly COWOA and do not want anyone to create real accounts, you can bypass the login page and have the checkout button take them directly to step one of checkout (name, address, etc..). See http://www.zen-cart.com/forum/showpo...&postcount=439.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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.
-
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.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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??
-
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)?
-
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.
-
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?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
JDog21
2) 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? :)
Quote:
Originally Posted by
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 ; )
...
5) 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:
Code:
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
-
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 ?
-
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.
-
Re: My Checkout Without Account Mod
HOw can i add FN, LN and telephone number with COWOA email only checkout.
Please help
-
Re: My Checkout Without Account Mod
I am able to manage that..if nyone interested to know let me know.
-
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?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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:
-
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
-
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
-
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!
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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... :(
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
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...
-
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?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
greengreetings
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?
The box is there. You have to have an item in the cart before it will show up.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
craftzombie
The box is there. You have to have an item in the cart before it will show up.
It's not on the website in my signature, though. It's on my test site. And my Configuration -> COWOA page is blank. All I see is Title, Value, and Action.
My cache shows no error messages.
I don't know what else to do.
-
Stuck on billing page
I've gone through the forum post on COWOA and haven't been able to solve my problem.
Every time I enter the information in on the billing page and click continue, it takes me right back to the billing page with all the fields blank.
I found the post about reinstalling everything. So I re-downloaded the COWOA files and then reinstalled everything. Removed the SQL items and then reinstalled the SQL items.
Still same problem.
I've installed this wonderful add-on on another site with no problems. Not sure what I did different here.
Any help would be greatly appreciated.
www.jcscreenprinting.com
Using zencart 1.3.9h
and newest download of COWOA
Thank You
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
greengreetings
It's not on the website in my signature, though. It's on my test site. And my Configuration -> COWOA page is blank. All I see is Title, Value, and Action.
My cache shows no error messages.
I don't know what else to do.
I have the same problem until tonight !
First, you have to check in your database in table "configuration_group" and search for "COWOA" in column "configuration_group_title". If you dont have any "COWOA" entry, you must run SQL files that come with the mod.
If "COWOA" is there, note the number in "configuration_group_id" field. In my case is 33.
Next, go to "configuration" table and look in "configuration_key" column. The goal is to find the 4 "COWOA_..." entry. For me, they are at the end of the table ("configuration_id" 925 to 928).
If you dont have them, you must run the SQL.
Next, for each COWOA item, look in field "configuration_group_id". You must have the number of the COWOA Id in table "configuration_group. 33 in my case.
If you have 0 like me at the beginning, simply put the right number and save your change. You have to do this for each COWOA item. When done, just go back to admin > configuration > cowoa and everything must be OK !!!!
Good luck !
-
Re: Stuck on billing page
Quote:
Originally Posted by
jdaven123
I've gone through the forum post on COWOA and haven't been able to solve my problem.
Every time I enter the information in on the billing page and click continue, it takes me right back to the billing page with all the fields blank.
I found the post about reinstalling everything. So I re-downloaded the COWOA files and then reinstalled everything. Removed the SQL items and then reinstalled the SQL items.
Still same problem.
I've installed this wonderful add-on on another site with no problems. Not sure what I did different here.
Any help would be greatly appreciated.
www.jcscreenprinting.com
Using zencart 1.3.9h
and newest download of COWOA
Thank You
Someone else had me try to see if this line of code was in the tpl_checkout_payment_default.php file in my templates folder and remove it to fix the problem.
if ($COWOA && ($_SESSION['cart']->show_total() == 0)) {
zen_redirect(zen_href_link(FILENAME_CHECKOUT_CONFIRMATION, '', 'SSL'));
}
I checked and it was not. Anyone else have any ideas of why I'm stuck on the billing page and it just keeps refreshing to a blank billing page when I click next.
Site is pretty new. Installed ZenCart, installed a template called LiteRed, then installed COWOA.
I'm so lost on trying to get this fixed.
Thank You
-
Re: Stuck on billing page
Quote:
Originally Posted by
jdaven123
Someone else had me try to see if this line of code was in the tpl_checkout_payment_default.php file in my templates folder and remove it to fix the problem.
if ($COWOA && ($_SESSION['cart']->show_total() == 0)) {
zen_redirect(zen_href_link(FILENAME_CHECKOUT_CONFIRMATION, '', 'SSL'));
}
I checked and it was not. Anyone else have any ideas of why I'm stuck on the billing page and it just keeps refreshing to a blank billing page when I click next.
Site is pretty new. Installed ZenCart, installed a template called LiteRed, then installed COWOA.
I'm so lost on trying to get this fixed.
Thank You
Do you have any log message ? I remember a problem like this one and one of my PHP file have an error (';' or ')' missing)
-
Re: Stuck on billing page
Quote:
Originally Posted by
EricBel
Do you have any log message ? I remember a problem like this one and one of my PHP file have an error (';' or ')' missing)
Where do I find this log to look at?
Thanks
-
Re: Stuck on billing page
Quote:
Originally Posted by
jdaven123
Where do I find this log to look at?
Thanks
The log are in the "cache" folder of ZenCart root installation.
You can open it with notepad (or notepad++ for a better experience !!!!)
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
EricBel
I have the same problem until tonight !
First, you have to check in your database in table "configuration_group" and search for "COWOA" in column "configuration_group_title". If you dont have any "COWOA" entry, you must run SQL files that come with the mod.
If "COWOA" is there, note the number in "configuration_group_id" field. In my case is 33.
Next, go to "configuration" table and look in "configuration_key" column. The goal is to find the 4 "COWOA_..." entry. For me, they are at the end of the table ("configuration_id" 925 to 928).
If you dont have them, you must run the SQL.
Next, for each COWOA item, look in field "configuration_group_id". You must have the number of the COWOA Id in table "configuration_group. 33 in my case.
If you have 0 like me at the beginning, simply put the right number and save your change. You have to do this for each COWOA item. When done, just go back to admin > configuration > cowoa and everything must be OK !!!!
Good luck !
Hi, my COWOA does not work at all. I have followed your tip here and dont seem to have the entries in my configuration table. I have run the sql several times with not luck. any Ideas?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
sjowler
Hi, my COWOA does not work at all. I have followed your tip here and dont seem to have the entries in my configuration table. I have run the sql several times with not luck. any Ideas?
Its OK, I fixed it. I had the customer approval settings turned on.
-
How to disable Checkout Without Account Mod
ver 1.3.9c
I want to temporarily disable COWA to see if it is causing a problem with a payment mod (PayPal Express), without uninstalling. But see no Admin/Config for this mod ?
-
Re: My Checkout Without Account Mod
Now I'm trying to install COWOA 2.0c1
I'm stacking in installation. In the install.txt, I got a few question.
1.
>>STEP 0-A If you have a Brand New Zen Cart 139 installation, just merge these files into yours. If you do not have a new template, erase the YOUR-TEMPLATE folder.
What is YOUR-TEMPLATE? Does it mean YOUR_TEMPLATE?
If so, can I erase all YOUR_TEMPLATE folders unser install folder?
2.
>>STEP 4 - Install the SQL Patch. To do this, open the file COWOA.sql. In your admin panel, open Tools -> Install SQL Patches.
What is COWOA.sql? Does it mean COWOA_Full_Install.sql?
Regard.
Yuma300
-
Re: My Checkout Without Account Mod
Now I understand install.txt. Thank you.
-
Re: My Checkout Without Account Mod
My customers are stuck in a loop. After filling out the form it simply reloads the billing form, blank, and nothing happens.
-
Re: My Checkout Without Account Mod
I have installed FEC which includes COWOA ..when a customer chooses to checkout with COWOA the standard ' new account' email is sent to customer which thanks the customer for creating an account! Is this a bug or is there a file that I need to change?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
rebelman
I have installed FEC which includes COWOA ..when a customer chooses to checkout with COWOA the standard ' new account' email is sent to customer which thanks the customer for creating an account! Is this a bug or is there a file that I need to change?
Though FEC has a COWOA option, FEC and COWOA are two DIFFERENT modules..
You need to post your FEC support questions on the FEC support thread..
-
Re: My Checkout Without Account Mod
I added the mod with no problems at all, working great.
-
Re: My Checkout Without Account Mod
me again...i'm everywhere... 1.3.9h new install of COWOA
to avoid some of the installation difficulties of my youth ;)
I'm merging the admin/index.php files as we speak and see at about line 86 no notes about the change being notated as COWOA specific and am concerned the index.php is from an earlier version of zencart. don't' want to screw this up:
here is the new 1.3.9h admin/index.php
Code:
echo '<div class="row"><span class="left">' . BOX_ENTRY_CUSTOMERS . '</span><span class="rigth"> ' . $customers->fields['count'] . '</span></div>';
echo '<div class="row"><span class="left">' . BOX_ENTRY_PRODUCTS . ' </span><span class="rigth">' .
$products->fields['count'] . '</span></div>';
echo '<div class="row"><span class="left">' . BOX_ENTRY_PRODUCTS_OFF . ' </span><span class="rigth">' . $products_off->fields['count'] . '</span></div>';
echo '<div class="row"><span class="left">' . BOX_ENTRY_REVIEWS . '</span><span class="rigth">' . $reviews->fields['count']. '</span></div>';
if (REVIEWS_APPROVAL=='1') {
COWOA's admin/index.php
Code:
echo '<div class="row"><span class="left">' . BOX_ENTRY_PRODUCTS . ' </span><span class="rigth">' . $products->fields['count'] . '</span></div>';
echo '<div class="row"><span class="left">'
. BOX_ENTRY_PRODUCTS_OFF . ' </span><span class="rigth">' .
actually i think just this is missing from the COWOA vesion with no notation as to why
Code:
. BOX_ENTRY_CUSTOMERS . '</span><span class="rigth"> ' . $customers->fields['count'] . '</span></div>';
echo '<div class="row"><span class="left">'
-
Re: My Checkout Without Account Mod
I've backed out of the installation as the files are too different from 1.3.9h
there is no notation especially in the ordered_steps (table-less). I have ordered steps already installed, no notation on whether the other code in the page is essential to it all running smoothly.
thank goodness for Dreamweaver tracking and syncing my files.
-
Re: My Checkout Without Account Mod
Since COWOA in incompatible with my payment module, I have decided to uninstall it. But I have run into some difficulties.
First of all I removed the COWOA code on the login page, just so customers won't be able to use it. So far, so good.
I then went on to check if you could create an account as usual. You couldn't. You also can't get your lost password.
Here is the site: sogrenibikes (dot) com
The only thing I did after removing the COWOA code on the login page was to try and run the uninstall.sql
That didn't go smoothly... When done through the admin part by uploading it:
"054 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."
The message I get after entering account information while signing up is this:
1054 Unknown column 'COWOA_account' in 'where clause'
in:
[select count(*) as total from zen_customers where customers_email_address = '[email protected]' and COWOA_account != 1]
Help, please?
It kind of sucks not to be able to uninstall it, since it has made my site go out of function! :wacko:
Thank you so much,
Alex
-
Re: My Checkout Without Account Mod
Since installing this mod on 1.3.8 two things occur:
1 - There is an image over the top left of my header image (Within the logo wrapper)
I have searched and found a solution that fixed this issue for other folk but it does not help with my site - woodandknifesupply.com
Have managed to get rid of the logo image BUT!! it obviously leaves a logo placeholder and mouseover web link....
Would be great to get rid of the image placeholder and weblink on mouseover.
Potentially isolated the issue to the following code within tpl_header.php
However I do not know how to fix it...
if (!isset($flag_disable_header) || !$flag_disable_header) {
?>
<div id="headerWrapper">
<!--bof-branding display-->
<div id="logoWrapper">
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
<div id="taglineWrapper">
<?php
if (HEADER_SALES_TEXT != '') {
?>
<div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
<?php
}
?>
<?php
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php
}
}
?>
</div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
</div>
<br class="clearBoth" />
<!--eof-branding display-->
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
-
Re: My Checkout Without Account Mod
Problem 1 is resolved
Restored the original file as described below and as per manual install guidelines modded the original file.....no more problem with issue 1 :smile:
/includes/templates/YOUR_TEMPLATE/common/tpl_header.php
====================================================================
FIND:
-
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
-
REPLACE WITH:
-
<?php if (!($_SESSION['COWOA'])) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li><?php } ?>
Still need help please with issue two :lookaroun
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
-
Re: My Checkout Without Account Mod
My problem has been solved.
-
Re: My Checkout Without Account Mod
Where can I download the latest version of this mod?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Mammoth
Still need help please with issue two :lookaroun
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
Any pointers appreciated.
-
Re: My Checkout Without Account Mod
I have installed version 2-0c1 of COWOA on ZenCart version 1.3..9.
When attempting to checkout without an account, I am having an issue.
I have seen other with the same problem, but have seen no definitive fixes; I have attempted all the various suggestions supplied to no avail.
This is the issue:
On step 1, where the user enters their Billing information, upon submitting this form, instead of going to Step 2: Shipping, it just reloads the form.
I have already verified all template folders were updated to my theme ("template_default").
I have verfied that /includes/modules/template_default/no_account.php is on the server.
PLEASE HELP!! Thanks.
-
Re: My Checkout Without Account Mod
For all who are having trouble installing this module try COWOA - Updated and Combined.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
countrycharm
Does this work with 1.3.8?
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Mammoth
Does this work with 1.3.8?
I think it will work with 1.3.8. I don't know why you are still on 1.3.8 I would upgrade for security reasons.
You can download the module from here if you want to try it out.
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
countrycharm
I don't know why you are still on 1.3.8
Because I've got so many mods in 1.3.8, I would probably need to build the site again from scratch.
-
Re: My Checkout Without Account Mod
I had to do that....many mods on 1.3.8a to 1.3.9h
It has been worth it...like learning from a nightmare...and took a great deal of time and testing. Had i been more methodical, not trying to save time, and carefully read through all the mods threads, one by one THOROUGHLY...I would have saved some time.
*Make sure all the mods you are adding or updating to 1.3.9h are using that version of the core files that require edits...many don't.
*READ through all the main threads about the mods because there are some fixes in there for 1.3.9h that have never been applied to the download section.
*after you've tried everything to make sure all files are edited correctly and uploaded, Keep poking at unresolved issues and post details of your problem as well as details of your success.
*Dreamweaver's (I'm using CS4) sync feature is very valuable for reviewing you server files match your local files.
*Step carefully though Winmerge, if you are using it as one mistake I found when I'd save changes, sometimes I saved the wrong side to my store.
These mistakes resulted in my redoing all the mods at least three times. However, I found fixes for other zenners that had been bothering them for awhile and had previously gone unresolved.
OH...and be appreciative and gracious of the help you get here...goes a long way...so do frustrating remarks...In other words, you'll never be the same....
Safe journey...
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
horsetags
Sorry, it is a modified header :-( - it's been a long day
STEP 1a - In your custom templates on 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')) { ?>
Help,I cannot find the
<?php if (($_SESSION['customer_id']) { ?>
in the tpl_header.php of my custom template.
Then where is the exact place of the tpl_header.php ?
Thanks in advance
-
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
xisu521
Then where is the exact place of the tpl_header.php ?
It is located in
includes/templates/YOUR_TEMPLATE_NAME/common
If you are using the default template it is in
includes/templates/template_default/common
The line you are looking
[FONT="]<?php if (($_SESSION['customer_id']) { ?>
is on line 48
[/FONT]
-
Re: My Checkout Without Account Mod
I feel like I've tried and tried to do this, but keep running into the same issue. I've installed three times, checked and double checked things, but I'm obviously missing something. On the /index.php?main_page=no_account page, I keep seeing the following.
What did I miss? I'm sure I've looked at it a dozen times, but I just can't see it.
-
Re: My Checkout Without Account Mod
I backed out of this installation as the ordered steps mod that was integrated was too difficult for me.
but I did have this issue and fixed it.
Do you have this file?
/includes/languages/english/extra_definitions/order_steps_defines.php? I guess you could just add the define to the languages/english.php file if it is not working.
Code:
define('TEXT_ORDER_STEPS_BILLING', 'Billing');
define('TEXT_ORDER_STEPS_1', 'Shipping');
define('TEXT_ORDER_STEPS_2', 'Payment');
define('TEXT_ORDER_STEPS_3', 'Order Review');
define('TEXT_ORDER_STEPS_4', 'Order Complete');
-
Re: My Checkout Without Account Mod
Thank you athena, that was the problem. Actually my template had the order_steps_defines.php as well, so that was overriding the one in the extra_definitions.
That did get me through that part, but even after spending hours on it, I still was having problems so I removed it again. Is this the best solution for checking out without an account? I don't know why I'm having such a block with this one. I don't like being beat by a plugin, but I want to make it easier for customers to check out. :frusty:
-
Re: My Checkout Without Account Mod
I'm still hoping to attempt to install this again when the dust settles.....I'll post here if I have success.
-
Re: My Checkout Without Account Mod
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>
<?php
} else {
if (STORE_STATUS == '0') {
?>
| <a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a>
<?php } } ?>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
| <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>
| <a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a>
<?php } ?>
<!-- ====================================== -->