Re: My Checkout Without Account Mod
Hi all
I have one problem after I start to use this mod
Sometimes customers ask me - Where is my order ID 2215?
They resend me email with order confirmations and I see order ID2215
But in the databaze exist another order with same ID and with different name and order date is one month early...
Im not sure , but last mode what Im install is COWOA... It is nice worked... but meibe I have problem with database... or something else...
Dont know how its happenes
sad maxus 8(
Re: My Checkout Without Account Mod
Hello all I'm fairly new to this code changing but the directions seemed easy enough. I've just finished installing everything logged off tryed to log back in and got
Fatal error: Call to undefined function zen_href_link() in /home/sandhi7/public_html/cart/admin/login.php on line 35
I'm on 1.3.8 and just tryed to install the cowao mod no addons or anything else not a clue where to start.
any idea's
Thanks in advance.
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Newbie76
I found the answer in a (much) earlier post on this thread:
Which is what I just done and seems to be working fine now :)
Quote:
I replaced modules/pages/login/header_php.php with the origional code from the over-writes folder.
I had the same problem. Rather than reverting back to the original header_php.php file which removes some coding needed for COWOA, here's the fix for the bug/typo in there. Go to approx line 58.
Replace:
WHERE customers_email_address = :email
AND COWOA_account != 1";
with:
WHERE customers_email_address = :emailAddress
AND COWOA_account != 1";
It worked for me. I hope that helps.
Jim Smith
Re: My Checkout Without Account Mod
Hi! This is my first post in ZenCart forum! :lamo:
Have anybody else had any experience with using both COWOA and Additional Customer Fields (ACF)?
I am stuck and the problem is that I cannot get my new customer fields (created with ACF) to write to the database with the COWOA option.
All my new customer fields gets perfectly written to the database when I use the normal account option.
Here's the web shop I'm working on:
http://pinjatas.com/zencart_test/
Hope to hear from you guys!
:bigups:
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
craftzombie
There is no uninstall sql.
It doesn't hurt anything to leave it there. It does nothing to the regular checkout. Leaving all of the files, but only removing the code from the login page, is really the only thing that needs to be done if this mod is not for you.
Which login? includes/modules/pages/login/header_php.php?
What code looking for to disable?
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
kburner
Which login? includes/modules/pages/login/header_php.php?
What code looking for to disable?
No, the template for the login page....
includes/templates/your_template/templates/tpl_login_default.php
The following code is what makes the Guest Checkout section appear on that page:
Code:
<?php
if ($_SESSION['cart']->count_contents() > 0) { ?>
<fieldset>
<legend>Checkout Without Account</legend>
<?php echo TEXT_RATHER_COWOA; ?>
<div class="buttonRow forward">
<?php echo "<a href=\"" . zen_href_link(FILENAME_NO_ACCOUNT, '', 'SSL') . "\">"; ?>
<?php echo zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT); ?></a></div>
<br class="clearBoth" />
</fieldset>
<?php } ?>
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
craftzombie
No, the template for the login page....
includes/templates/your_template/templates/tpl_login_default.php
The following code is what makes the Guest Checkout section appear on that page:
Code:
<?php
if ($_SESSION['cart']->count_contents() > 0) { ?>
<fieldset>
<legend>Checkout Without Account</legend>
<?php echo TEXT_RATHER_COWOA; ?>
<div class="buttonRow forward">
<?php echo "<a href=\"" . zen_href_link(FILENAME_NO_ACCOUNT, '', 'SSL') . "\">"; ?>
<?php echo zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT); ?></a></div>
<br class="clearBoth" />
</fieldset>
<?php } ?>
Thank you.
Re: My Checkout Without Account Mod
why it said page not find when i use the chech out with out account
http://www.mydomain.com/index.php?ma...AME_NO_ACCOUNT <----this page doesnt works. what files i missed?
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
cloud12
It means your files did not transfer and your cart cannot find that page. Upload them again.
Re: My Checkout Without Account Mod
This may have been answered but how do I go about putting the Captcha at the bottom of the Step 1 of 5 - Billing Information page. It was working up until I added this module. Thanks for the help.