-
Re: Fast and Easy Checkout for Zen Cart
I just tried uninstalling simple SEO which was the module I installed after the easy checkout one, in an attempt to find why this module was not working, and the checkout is back again. It's calculating the shipping weight as it should. I don't know what simple SEO has to do with shipping, but obviously it was interfering somewhat.
Thank you for looking into it numinix, your module is wonderful and works like a charm!
-
Re: Fast and Easy Checkout for Zen Cart
I believe simple SEO works by actually altering the zen_href function. Luckily I work with that author often so I will put this to his attention.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
I believe simple SEO works by actually altering the zen_href function. Luckily I work with that author often so I will put this to his attention.
Yes it does change that, it doesnt really explain why it is not compatible with this module though. It has been fully tested with Zen default checkout, but not with this module. So I assume that somewhere in the code we have a conflict between the 2 modules.
Only Jeff knows where this can be.
^_^
-
Re: Fast and Easy Checkout for Zen Cart
Jeff, you hardcoded many links in the javascript file, which might be the root of the problem. I just had a very quick look at the files anyway
example:
document.checkout_payment.action = "index.php?main_page=checkout&action=process"
You should use zen_href_link function here.
On another hand, if you use SSU, you can exclude these pages from using SEO links in admin. For example, just put "checkout" without the quotes into exclude list in ssu admin settings.
-
Re: Fast and Easy Checkout for Zen Cart
I've read through this thread and am having the same problem with shipping not being added to the total when the FEC single-page checkout loads. The shipping is correctly added to the total when you click the shipping radio button, but not on the initial load.
I have Zone Rate shipping set up with two zones, both of which calculate correctly. The shipping is set up so that only one shipping option will be available in any order. Since the radio button already has focus, it is unlikely that a customer will re-select the radio button. Thus, the shipping is never added to the order.
The shipping will calculate and be included in the total if, after viewing the single-page checkout, I then add a second item to the cart, even if I don't click the shipping radio button. So the problem appears to be limited to the initial page load.
I tried applying lankeeyankee's fix (19th December 2007 09:57 PM), to no avail. He suggested adding zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL')); } to the code, but it was already there as:
if ($_SESSION['sendto'] != false) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, '', 'SSL'));
}
I'm on FEC 2.1 with Zen 1.3.7.1 and I have Admin Login As Customer 2.1 as well.
Any help on getting the shipping to be included in the total on the initial page load?
I don't know if this is related, but sometimes (15% of the time) the Zone Rate line of the Total is listed as 'unable to determine rate at this time'. Otherwise, this behaves as described above.
Thanks for your help. This is a great mod.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
phineas77
I've read through this thread and am having the same problem with shipping not being added to the total when the FEC single-page checkout loads. The shipping is correctly added to the total when you click the shipping radio button, but not on the initial load.
I have Zone Rate shipping set up with two zones, both of which calculate correctly. The shipping is set up so that only one shipping option will be available in any order. Since the radio button already has focus, it is unlikely that a customer will re-select the radio button. Thus, the shipping is never added to the order.
The shipping will calculate and be included in the total if, after viewing the single-page checkout, I then add a second item to the cart, even if I don't click the shipping radio button. So the problem appears to be limited to the initial page load.
I tried applying lankeeyankee's fix (19th December 2007 09:57 PM), to no avail. He suggested adding zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL')); } to the code, but it was already there as:
if ($_SESSION['sendto'] != false) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, '', 'SSL'));
}
I'm on FEC 2.1 with Zen 1.3.7.1 and I have Admin Login As Customer 2.1 as well.
Any help on getting the shipping to be included in the total on the initial page load?
I don't know if this is related, but sometimes (15% of the time) the Zone Rate line of the Total is listed as 'unable to determine rate at this time'. Otherwise, this behaves as described above.
Thanks for your help. This is a great mod.
Please upgrade to the latest version of Fast and Easy Checkout and then report back.
-
Re: Fast and Easy Checkout for Zen Cart
I don't think that will make any difference, and I've personally been having this problem on several sites for several versions now.
My solution has been to add an extra Refresh button in the shopping cart section with wording like "Please click to ensure correct shipping" - not ideal, but a good workaround
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Ryk
I don't think that will make any difference, and I've personally been having this problem on several sites for several versions now.
My solution has been to add an extra Refresh button in the shopping cart section with wording like "Please click to ensure correct shipping" - not ideal, but a good workaround
That's fine but I still can't provide support for previuos versions due to restructuring of the code. No one should be using anything but the current version since this one now handles better if JavaScript is disabled or not working properly. Or rather, the previous versions do not work for one-page checkout at all if JS is disabled...
-
Re: Fast and Easy Checkout for Zen Cart
I'm not worried about previous versions - the problem still seems to exist in 1.23
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
phineas77
I've read through this thread and am having the same problem with shipping not being added to the total when the FEC single-page checkout loads. The shipping is correctly added to the total when you click the shipping radio button, but not on the initial load.
I have Zone Rate shipping set up with two zones, both of which calculate correctly. The shipping is set up so that only one shipping option will be available in any order. Since the radio button already has focus, it is unlikely that a customer will re-select the radio button. Thus, the shipping is never added to the order.
The shipping will calculate and be included in the total if, after viewing the single-page checkout, I then add a second item to the cart, even if I don't click the shipping radio button. So the problem appears to be limited to the initial page load.
I tried applying lankeeyankee's fix (19th December 2007 09:57 PM), to no avail. He suggested adding zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL')); } to the code, but it was already there as:
if ($_SESSION['sendto'] != false) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, '', 'SSL'));
}
I'm on FEC 2.1 with Zen 1.3.7.1 and I have Admin Login As Customer 2.1 as well.
Any help on getting the shipping to be included in the total on the initial page load?
I don't know if this is related, but sometimes (15% of the time) the Zone Rate line of the Total is listed as 'unable to determine rate at this time'. Otherwise, this behaves as described above.
Thanks for your help. This is a great mod.
In 1.23 if you change:
PHP Code:
if ($_SESSION['sendto'] != false) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, '', 'SSL'));
}
to:
PHP Code:
if ($_SESSION['sendto'] != false) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL'));
}
Do you still get the error?
-
Re: Fast and Easy Checkout for Zen Cart
Nevermind, in 1.23 the code shows up as:
PHP Code:
if ( !$_SESSION['shipping'] || ( $_SESSION['shipping'] && ($_SESSION['shipping'] == false) && (zen_count_shipping_modules() > 1) ) ) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL'));
}
I'll wait for you to upgrade and let me know what has changed.
Are you using Easy Sign-Up as well? The latest version forces shipping to be set properly before the checkout is even entered. You may want to try that. If not, let me know and I will add the same code to FEC for modifying the login.
-
Re: Fast and Easy Checkout for Zen Cart
Hey man thanks for a great contribution to Zen Cart. :clap:
I got the FEO installed and Zen Cart 1.3.8a, One problem that has been happening lately is that I have taxes set on shipping but when it transfers to PayPal IPN - the taxes on the shipping disappears.
Any Ideas, sorry if this is an old question. I tried going back as much as possible for an answer but did not find one.
-
Re: Fast and Easy Checkout for Zen Cart
I like the idea of one page chekout but i can't install it.
i insert all the files end the sql code, but when i conferm the order start only a withe page....:frusty:
please help me this add is what i'm looking for
-
Re: Fast and Easy Checkout for Zen Cart
NOTICE (v1.23 users only)
A bug has been found in FEC v1.23 where executing a piece of JavaScript before the page has loaded causes customers with IE6 to not be able to complete the checkout. The bug has been resolved, but unfortunately the Numinix website is being migrated to a new server and the new patch will not be available until this evening.
To resolve the issue, please perform the following steps until an official patch can be released:
1. Open includes/modules/pages/fec_confirmation/jscript-scriptstyles.php
Find
PHP Code:
[size=2]?>[/size]
[size=2]<script ...>[/size]
[size=2][/size]
Add Before
PHP Code:
if (FEC_ONE_PAGE == 'true') {
Find
Add After
2. Go to ADMIN->CONFIGURATION->FAST AND EASY CHECKOUT CONFIGURATION and set One Page Checkout to "false".
By deactivating the one page checkout you will also deactivate the script that is causing the errors. If you do not perform step one above and just deactivate One-Page Checkout, the bug will still occur for customers using IE6. There have been no problems with other browsers.
Again, the problem has already been resolved, so be patient until tonight when it is widely released in v1.24. Thank you.
-
Re: Fast and Easy Checkout for Zen Cart
-
Re: Fast and Easy Checkout for Zen Cart
Numinix,
I'm getting a 404 on any link to your site and can't download the newest version. FYI
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
In 1.23 if you change:
PHP Code:
if ($_SESSION['sendto'] != false) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, '', 'SSL'));
}
to:
PHP Code:
if ($_SESSION['sendto'] != false) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL'));
}
Do you still get the error?
Hi
I've installed this mod this afternoon, looks great... but am having the same problem as above.
The shipping rate seems to be using my rate for australia, not the customer's address. if you click on the correct shipping rate on the form, the cart total refreshes and is correct. The zone rates all seem to be working ok in shipping estimator though.
Sub-Total: £135.00Sub-Total:
Shipping Options (Shipping to ): £79.00
Total: £214.00
It doesn't seem to be checking the address entered (or something) sorry, i'm not great at the technical stuff... i survive on luck and this forum!
I looked through the downloaded files for the lines of code above, but have ascertained that I do have the later version. (although not tonight's release!).
Any ideas?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
Nevermind, in 1.23 the code shows up as:
PHP Code:
if ( !$_SESSION['shipping'] || ( $_SESSION['shipping'] && ($_SESSION['shipping'] == false) && (zen_count_shipping_modules() > 1) ) ) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL'));
}
I'll wait for you to upgrade and let me know what has changed.
Are you using Easy Sign-Up as well? The latest version forces shipping to be set properly before the checkout is even entered. You may want to try that. If not, let me know and I will add the same code to FEC for modifying the login.
I'm not using Easy Sign-Up. I tried adding the action=null parameter earlier, but still receive the same error. I tried again just now with the same results. Other than that, that section of code is identical.
I don't have access to your site at the moment and the mods section only has FEC 1.22 available.
Thanks again for your help on this.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
phineas77
Numinix,
I'm getting a 404 on any link to your site and can't download the newest version. FYI
My last post has already explained this.
Now that the site is back up (clear your browser cache if you had visited earlier while it was down).
Download the patch for FEC v1.24 BETA
-
Re: Fast and Easy Checkout for Zen Cart
Hi
I've downloaded and installed both the most up to date version along with the patch and am still having the shipping issue mentioned a couple of posts above, any ideas?
cheers
-
Re: Fast and Easy Checkout for Zen Cart
numinix please help me, when install it and i confirm the order on my site starts a white checkout page only, how can i do?
-
Re: Fast and Easy Checkout for Zen Cart
I have managed to get this modules installed, is so great! However, I notice one thing upon the "Confirm order" being click which brings to the "Processing your Order, please wait" . At this page, the category side box looks to be out of order and being shows up at the left side ( which suppose to be at the right side ) while the left sidebox being shows up at the bottom of the page.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
IL PUPO
numinix please help me, when install it and i confirm the order on my site starts a white checkout page only, how can i do?
You'll need to enable strict error reporting and paste the FATAL error which is causing your page to not load.
Quote:
Originally Posted by
tweakservers
I have managed to get this modules installed, is so great! However, I notice one thing upon the "Confirm order" being click which brings to the "Processing your Order, please wait" . At this page, the category side box looks to be out of order and being shows up at the left side ( which suppose to be at the right side ) while the left sidebox being shows up at the bottom of the page.
You should disable the left and right sideboxes at this stage since you wouldn't want anyone clicking them anyways.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
Nevermind, in 1.23 the code shows up as:
PHP Code:
if ( !$_SESSION['shipping'] || ( $_SESSION['shipping'] && ($_SESSION['shipping'] == false) && (zen_count_shipping_modules() > 1) ) ) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL'));
}
I'll wait for you to upgrade and let me know what has changed.
Are you using Easy Sign-Up as well? The latest version forces shipping to be set properly before the checkout is even entered. You may want to try that. If not, let me know and I will add the same code to FEC for modifying the login.
Quote:
Originally Posted by
numinix
My apologies - you mentioned the migration and I glossed over it in my haste.
I downloaded and installed v1.23 along with the 1.24 BETA patch, per your suggestion. Unfortunately, the behavior has not changed and shipping is still not included in the total.
Any thoughts?
-
Re: Fast and Easy Checkout for Zen Cart
[QUOTE=numinix;640025]You'll need to enable strict error reporting and paste the FATAL error which is causing your page to not load.
How can I do?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
You should disable the left and right sideboxes at this stage since you wouldn't want anyone clicking them anyways.
I have checked out the tpl_checkout_default.php and the checkout.css but I can't seems to find a way to disable this. Can you share more on this? :D
-
Re: Fast and Easy Checkout for Zen Cart
You need to edit tpl_main_page.php as described in the support forum the same as in Easy Sign-Up and Login.
-
Re: Fast and Easy Checkout for Zen Cart
hi numinix
have you or anyone overcome the shipping display issue at all? i use free shipping and zones that work fine without fec and even with fec installed they show up and work, but only if clicked on... in other words, the customer's cart at the top of the page displays a completely wrong zone shipping rate (it also doesn't display what zone it's calculating shipping on), but displays correctly once the shipping method is selected further down the page.
thanks in advance
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
You need to edit tpl_main_page.php as described in the support forum the same as in Easy Sign-Up and Login.
Are you referring to this:
Quote:
4. Add the following line to tpl_main_page.php:
- Find: <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
- Replace With: <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?><?php if(FEC_ONE_PAGE == 'true' && $_GET['main_page'] == 'checkout_confirmation') echo ' onLoad="document.checkout_confirmation.submit();"';?>>
If yes, it has been changed during the installation.
-
Re: Fast and Easy Checkout for Zen Cart
I managed to get it disabled by adding the following lines :
Quote:
if ($current_page_base == 'fec_confirmation' and $cPath == '')
{ $flag_disable_right = true; }
if ($current_page_base == 'fec_confirmation' and $cPath == '')
{ $flag_disable_left = true; }
-
Re: Fast and Easy Checkout for Zen Cart
Please help with the following:
I got the FEO installed and Zen Cart 1.3.8a, One problem that has been happening lately is that I have taxes set on shipping but when it transfers to PayPal IPN - the taxes on the shipping disappears.
Any Ideas, sorry if this is an old question. I tried going back as much as possible for an answer but did not find one.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
Nevermind, in 1.23 the code shows up as:
PHP Code:
if ( !$_SESSION['shipping'] || ( $_SESSION['shipping'] && ($_SESSION['shipping'] == false) && (zen_count_shipping_modules() > 1) ) ) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL'));
}
I'll wait for you to upgrade and let me know what has changed.
Are you using Easy Sign-Up as well? The latest version forces shipping to be set properly before the checkout is even entered. You may want to try that. If not, let me know and I will add the same code to FEC for modifying the login.
Quote:
Originally Posted by
phineas77
My apologies - you mentioned the migration and I glossed over it in my haste.
I downloaded and installed v1.23 along with the 1.24 BETA patch, per your suggestion. Unfortunately, the behavior has not changed and shipping is still not included in the total.
Any thoughts?
Numinix: any update on this? If I elect to use Easy Sign-Up in order to force the shipping to be set before the checkout is entered, do I actually have to use the ESU screen or can I keep my traditional login?
Thanks
-
Re: Fast and Easy Checkout for Zen Cart
Did you make the modifications in the create account page as per the installation instructions for v1.24?
Quote:
If not using Easy Sign-Up and Login v1.18b+, please perform the following extra step in includes/modules/YOUR_TEMPLATE/create_account.php:
Find:
PHP Code:
$address_id = $db->Insert_ID();
Add After:
PHP Code:
// FEC MODIFICATION
$_SESSION['sendto'] = $_SESSION['customer_default_address_id'] = (int)$address_id;
-
Re: Fast and Easy Checkout for Zen Cart
Anyway, I can not find anywhere to fill in the discount coupon. so I have to give this module up.
-
Re: Fast and Easy Checkout for Zen Cart
has anyone had any luck rectifying the shipping problem at all?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
zilla
has anyone had any luck rectifying the shipping problem at all?
Have you followed this step yet?
http://www.zen-cart.com/forum/showpo...&postcount=333
-
Re: Fast and Easy Checkout for Zen Cart
yes, to my knowledge, i've tried everything that's been suggested.
as mentioned previously, the module works fine apart from this slight problem...
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
I'm experiencing the same results. I've installed the latest version plus the patch. I also added the create_account.php code, per post 333, since I don't use Easy Sign-Up. The shipping is still not added to the order total when FEC one-page first loads.
Like Zilla, everything else works great except for the order total.
-
Re: Fast and Easy Checkout for Zen Cart
I saw this posted on page 19 but no one answered the question, so I hope someone can please help me with this.. It's driving me crazy.
I'm using Zen 1.3.8 and Fast Checout w/ the Gift Wrapping module.
During the shipping/payment screen (which is stacked, not split) the gift wrapping box is displayed but when the confirm button is clicked and launches the Order Confirmation page (index.php?main_page=fec_confirmation) the gift wrapping options are not passing through.
Does anyone have any idea why this is occuring?
Thanks
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
phineas77
I'm experiencing the same results. I've installed the latest version plus the patch. I also added the create_account.php code, per post 333, since I don't use Easy Sign-Up. The shipping is still not added to the order total when FEC one-page first loads.
Like Zilla, everything else works great except for the order total.
Any update on this?
The order total sort order shouldn't have any affect on this, correct?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
hutch32804
I saw this posted on page 19 but no one answered the question, so I hope someone can please help me with this.. It's driving me crazy.
I'm using Zen 1.3.8 and Fast Checout w/ the Gift Wrapping module.
During the shipping/payment screen (which is stacked, not split) the gift wrapping box is displayed but when the confirm button is clicked and launches the Order Confirmation page (index.php?main_page=fec_confirmation) the gift wrapping options are not passing through.
Does anyone have any idea why this is occuring?
Thanks
I've recently done an install and haven't encountered this. Have you checked the Gift Wrap Module to see if you've missed any modifications? FEC comes with its pages pre-modded, but there may still be other file changes outside of the mod that need to be made. Double check that fec_confirmation has all of the required changes as well.
Quote:
Originally Posted by
phineas77
Any update on this?
The order total sort order shouldn't have any affect on this, correct?
There is no update at this time. Also, this problem isn't occuring on any of my client's websites so I haven't reproduced the error. Is it specific to only one shipping module for you or all shipping modules?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
I've recently done an install and haven't encountered this. Have you checked the Gift Wrap Module to see if you've missed any modifications? FEC comes with its pages pre-modded, but there may still be other file changes outside of the mod that need to be made. Double check that fec_confirmation has all of the required changes as well.
There is no update at this time. Also, this problem isn't occuring on any of my client's websites so I haven't reproduced the error. Is it specific to only one shipping module for you or all shipping modules?
I've recently switched to USPS shipping (this afternoon), which works great. Shipping is included in the total on page load and everything appears in working order.
Numinix, thanks for spending time on this. My solution was a work-around and it seemed specific to the module I was using (Zone Rates).
Again, great mod - thank you for the contribution.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
phineas77
I've recently switched to USPS shipping (this afternoon), which works great. Shipping is included in the total on page load and everything appears in working order.
Numinix, thanks for spending time on this. My solution was a work-around and it seemed specific to the module I was using (Zone Rates).
Again, great mod - thank you for the contribution.
Hmm, the fix I posted was tested with a site with the exact same problem and it solved the problem. However, if someone absolutely needs to use a tabl rates module like zone rates, try Zones Table Rate as it is a better module and doesn't have any problems with FEC. You can alternatively try using Per Category Shipping or one of the other table rate modules created by Numinix.
Glad you have been able to work around this issue.
-
Re: Fast and Easy Checkout for Zen Cart
Hi,
Ive installed this module and really want to get it working. However im having trouble with the paypal checkout process. Once i go through the checkout process, select paypal as payment (paypal express option) but upon clicking the confirm order button i get the following message
An error occurred when we tried to contact the payment processor. Please try again, select an alternate payment method, or contact the store owner for assistance. (7) 7 - Field format error: 10731-The field Shipping Address Country is required
Any ideas?
Many thanks
Paul
-
Re: Fast and Easy Checkout for Zen Cart
Can someone post a screenshot of this mod for me please (pressprt scr button paste in paint) it would be greatly appricated, I want to see what it looks like before i install it thank you!
-
Shipping amounts incorrect on initial Load
I am also experiencing the problem with the shipping amounts being wrong when the page first loads.
I've tried all of the suggestions and I am using the newesr versions of both FEC (1.26) and easy signup.
I'm using the Canada Post Shipping module
I was also having problems with orders disappearing (receiving Payments for orders with no sign of them on my site) but I was using FEC 1.16 at the time so I'm hoping that part is cleared up.
Any help would be appreciated
The site is http://namethosesongs.com
Thanks
Greg
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
phineas77
I've recently switched to USPS shipping (this afternoon), which works great. Shipping is included in the total on page load and everything appears in working order.
Numinix, thanks for spending time on this. My solution was a work-around and it seemed specific to the module I was using (Zone Rates).
Again, great mod - thank you for the contribution.
I really like this mod, but have problems with shipping just like phineas77. I am using the Zone table rates mod. Have you found the fix?
Thanks, Kim
-
Re: Fast and Easy Checkout for Zen Cart
I have an older version v.1.16. Do I just re-load everything for version v1.24? How about install.sql file?
Kim
-
Re: Fast and Easy Checkout for Zen Cart
I installed this along with easy signup. I'm using the latest version of Zen Cart and Nochex as my merchant account for payments.
It works fine with PayPal express checkout and everything works as it should when you click that button but it's not working when i use the both the one page checkout or switching that off. Nothing is working except the PayPal Express Checkout now.
I get the following error message.
Errors have occurred during the processing of your form.
Please make the following corrections:
* Please select a payment method for your order.
The order total isn't showing either.
Also in Easy Account Signup when you click My Account and Change my account details i notice the telephone requirement is still there - How to get rid of that ?
Any fix for this ?
-
Re: Fast and Easy Checkout for Zen Cart NOT WORKING
Quote:
Originally Posted by
Pet Herbal Remedies
I have uploaded fast and easy checkout (i believe properly) however, when I click on a product, add it to cart then go to checkout I get "Your Order Total" and a "Confirm Your Order" but no total $ amount. When I click on "Confirm Your Order" it gives a red error that reads "please select a payment method".
What did I do wrong? All assistance greatly appreciated! Lynn
http://www.PetHerbalRemedies.com:shocking:
Me too and the documentation doesn't mention anything about editing the tpl_main_page file mentioned earlier in this thread although i did edit that and the errors are still there. The checkout without an account isn't showing up either.
I wish there was more concise help for us newbies who can do this stuff but need proper step by step instructions.
-
Re: Fast and Easy Checkout for Zen Cart
I deleted the checkout.php file and reverted back to the old checkout for now.
I would love to get this working though so help would be appreciated.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Grace38
I deleted the checkout.php file and reverted back to the old checkout for now.
I would love to get this working though so help would be appreciated.
Is that the only file you deleted? How about the sql? I am trying to get Checkout without account mod and this one to work. I really like the one page checkout. Plus, I can not get the Ship Zone table rates to work.
I have to delete this one. What files do I need to uninstall?
Thanks, Kim
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
kburner
Is that the only file you deleted? How about the sql? I am trying to get Checkout without account mod and this one to work. I really like the one page checkout. Plus, I can not get the Ship Zone table rates to work.
I have to delete this one. What files do I need to uninstall?
Thanks, Kim
I just deleted the one file.
I believe you can also run the uninstall sql but i didnt want to in case anything else didnt work afterwards but just deleting the one file made everything revert back to the old checkout for me.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Grace38
I just deleted the one file.
I believe you can also run the uninstall sql but i didnt want to in case anything else didnt work afterwards but just deleting the one file made everything revert back to the old checkout for me.
What is the path for the checkout.php file? includes/?
Thank you for your help. Kim
-
Re: Fast and Easy Checkout for Zen Cart
I think its in includes/extra_configures/checkout.php.
So that'll be /yourstore/extra_configures/checkout.php
The instructions say this exactly.
Fast and Easy Checkout for Zen Cart is activated by loading an extra_configures file called checkout.php before the filenames.php file.
This causes definitions for the checkout links to be defined to direct customers to the new integrated checkout page. To deactivate the script without running the uninstall.sql and deleting all of the files, simply rename or delete the file includes/extra_configures/checkout.php.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Grace38
I think its in includes/extra_configures/checkout.php.
So that'll be /yourstore/extra_configures/checkout.php
The instructions say this exactly.
Fast and Easy Checkout for Zen Cart is activated by loading an extra_configures file called checkout.php before the filenames.php file.
This causes definitions for the checkout links to be defined to direct customers to the new integrated checkout page. To deactivate the script without running the uninstall.sql and deleting all of the files, simply rename or delete the file includes/extra_configures/checkout.php.
It is strange that people have not realized Easy Sign-Up and Login is an upgraded version of Checkout Without an Account. It has more features and completely integrates with FEC.
For any shipping problems, I suggest using the new version which was released yesterday. If you do not yet see it on the Zen Cart website, you can always download it from Numinix. Since we control our own server, updates are made available instantly. We also have a weekly newsletter to keep visitors informed of updates, bug fixes, patches, and developments currently underway.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
It is strange that people have not realized Easy Sign-Up and Login is an upgraded version of Checkout Without an Account. It has more features and completely integrates with FEC.
For any shipping problems, I suggest using the new version which was released yesterday. If you do not yet see it on the Zen Cart website, you can always download it from Numinix. Since we control our own server, updates are made available instantly. We also have a weekly newsletter to keep visitors informed of updates, bug fixes, patches, and developments currently underway.
I loaded FEC many months ago because I wanted one page checkout. And then found with going live that customers want to checkout with an account. I did not save orig files when I loaded FEC, but did with COWOA.
Do I have to back everything out with FEC and COWOA and then load Easy Sign-Up and Login? Does anyone have a print screen for Easy Sign-up and Login? I do not want to load another mod and have same issues with shipping and order steps that do not match.
Thanks, Kim
-
Re: Fast and Easy Checkout for Zen Cart
Installing ESL should overwrite COWOA. Since it uses the same database entries for COWOA, those particular commands will not be needed to be re-executed. However, it may just be easier to run the uninstall.sql for COWOA before installing FEC/ESL. Always install FEC before ESL as per the documentation, otherwise read the comments in the install.sql file for ESL.
-
Re: Fast and Easy Checkout for Zen Cart
I would like to move the "Continue Checkout" button up and just below the "Payment Method" box. Where and how do I do that?
Thanks
www.thecablestation.com
-
Re: Fast and Easy Checkout for Zen Cart
Depending on which template file you are using:
/includes/templates/YOUR_TEMPLATE/templates/
then look for either the split or stacked checkout templates depending on which you are using.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
Depending on which template file you are using:
/includes/templates/YOUR_TEMPLATE/templates/
then look for either the split or stacked checkout templates depending on which you are using.
I am using the split checkout. I have looked in the tpl_checkout_split.php file but do not know what to move and to where to make this work.
Your help is most appreciated.
-
Re: no payment method / please clarify install
OK, I have just 'installed' the fast and easy checkout using a recent download of the file (1-22.zip).
cart is version 1.3.8a
1st question, I am still unclear about what this install step means; "Rename /includes/templates/YOUR_TEMPLATE to your custom template name"
My cart has two folders in templates; 'classic' and 'template default'. So do I upload the YOUR_TEMPLATE folder into includes/templates ? Do I instead load
the files in it into their respective places in either 'classic' or 'template default' ?
I had read a long way through the thread but never saw the above question answered, so in the meantime I loaded the files contained
in the YOUR_TEMPLATE folder in their respective places in the existing template folders.
What happens currently is that at the 'confirm the order' stage it will not go any further because there has been no place to
select a payment method (this store is using the basic Paypal module at the moment) .
I assume the error is due to improper / incomplete installation.
Many Thanks
-
Re: Fast and Easy Checkout for Zen Cart
Hi, I'm having problem with gift certificates and this module. It works fine when GC amount is greater than order total, but when I apply amount less than order total it miscalculates. Also it doesn't update amount in shopping cart confirmation after amount is applied. I think this is a bug?
-
Re: Fast and Easy Checkout for Zen Cart
Once the gift certificate is added to the cart the customer enters an amount to redeem in the box and then continues to the confirmation page without clicking refresh. It should deduct the amount of the gift certificate on the confirmation page or go straight to the success page if one-page checkout is enabled.
There is a bug though when a customer enters and amount in the gv box and then clicks refresh. This will update the order total on the checkout page, but when they click to confirm checkout, the page will be refreshed and the gift voucher will be removed.
This will be looked into further.
-
Re: Fast and Easy Checkout for Zen Cart
Thanks for the reply numinix, but I don't get a confirmation page with the deducted amount from the total (it goes straight to Paypal checkout page which is the only payment module I have installed with the miscalculation) even though I have Checkout Confirmation Alternate Text page configured in my admin. Maybe I haven't installed module properly. SHould I be seeing something different?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
wildgarden
Thanks for the reply numinix, but I don't get a confirmation page with the deducted amount from the total (it goes straight to Paypal checkout page which is the only payment module I have installed with the miscalculation) even though I have Checkout Confirmation Alternate Text page configured in my admin. Maybe I haven't installed module properly. SHould I be seeing something different?
It should briefly show the payment processing text and then forward to PayPal. For testing purposes, either disable the one-page checkout from within the admin, or disable javascript on your browser and you'll be able to see the confirmation page. The discount should appear there properly.
I too tested with PayPal and the calculations were made correctly. This test was performed on the live Numinix website.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
micmed
I am using the split checkout. I have looked in the tpl_checkout_split.php file but do not know what to move and to where to make this work.
Your help is most appreciated.
Please Help:eek:
-
Re: Fast and Easy Checkout for Zen Cart
I have this mod loaded with COWOA. I would like to change css file, but barely get by. Which css file should I use? Directions state to create your own....but do not know where to begin. Does anyone have suggestions?
Thanks,
Kim
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
kburner
I have this mod loaded with COWOA. I would like to change css file, but barely get by. Which css file should I use? Directions state to create your own....but do not know where to begin. Does anyone have suggestions?
Thanks,
Kim
Edit the file in:
includes/templates/YOUR_TEMPLATE/css/checkout.css
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
Edit the file in:
includes/templates/YOUR_TEMPLATE/css/checkout.css
Thanks numinix for the checkout part.
I need to modify the billing or first part of checkout. All of my boxes to enter information are all over the place and swished together.
https://www.burnerbooks.com//index.p...age=no_account
Kim
-
Re: Fast and Easy Checkout for Zen Cart
Does anyone know how to move the Shipping Method before shopping cart contents at the top of the page.
-
bug with credit card error
I have just upgraded to 1.25, using ZC 1.3.7.1. I am using all of the new files apart from the tpl_checkout_default file which I kept from v 1.05 since I don't care about the split page/stacked page options and all of the code seemed to be essentially the same between the old tpl_checkout_default and the new tpl_checkout_default with tpl_checkout_split(apart from the old file not using tables). Everything functions correctly except for the following error.
When I enter an invalid credit card expiration date and click submit, I am taken to the fec_checkout_confirmation page, which then kicks me back to the checkout page with the correct error message.
Where the bug is, is that when you are redirected back to the checkout page the url is only &main_page=checkout and not &main_page=checkout&action=null. What happens is that when I enter in the credit card info again and click submit, the page just refreshes and the new url is &main_page=checkout&action=null. I then have to resubmit the credit card info again to get to the checkout confirmation page again.
I have looked through the header_php files in both modules>pages>checkout and modules>pages>fec_checkout_confirmation, and at the various tpl files in templates>my_template>templates but can't see where the error is.
Is this a known issue, and if so is there a workaround? It adds a level of confusion and frustration for the user when they are having pages refresh for no apparent reason.
Thanks for continuing to develop and support your mods, Numinix!!
-
Re: bug with credit card error
Quote:
Originally Posted by
lankeeyankee
I have just upgraded to 1.25, using ZC 1.3.7.1. I am using all of the new files apart from the tpl_checkout_default file which I kept from v 1.05 since I don't care about the split page/stacked page options and all of the code seemed to be essentially the same between the old tpl_checkout_default and the new tpl_checkout_default with tpl_checkout_split(apart from the old file not using tables). Everything functions correctly except for the following error.
When I enter an invalid credit card expiration date and click submit, I am taken to the fec_checkout_confirmation page, which then kicks me back to the checkout page with the correct error message.
Where the bug is, is that when you are redirected back to the checkout page the url is only &main_page=checkout and not &main_page=checkout&action=null. What happens is that when I enter in the credit card info again and click submit, the page just refreshes and the new url is &main_page=checkout&action=null. I then have to resubmit the credit card info again to get to the checkout confirmation page again.
I have looked through the header_php files in both modules>pages>checkout and modules>pages>fec_checkout_confirmation, and at the various tpl files in templates>my_template>templates but can't see where the error is.
Is this a known issue, and if so is there a workaround? It adds a level of confusion and frustration for the user when they are having pages refresh for no apparent reason.
Thanks for continuing to develop and support your mods, Numinix!!
This is a valid bug and is fixed in v1.26 just released.
Thank you for the detailed bug report.
-
Re: bug with credit card error
Quote:
Originally Posted by
numinix
This is a valid bug and is fixed in v1.26 just released.
Thank you for the detailed bug report.
Thanks! It works now.:clap:
-
Re: Fast and Easy Checkout for Zen Cart
I just installed FEC and it worked wonderfully even though I do not test payment with checkout yet. I search for Easy Sign-Up and Login add-on but couldn't find it.
I saw your website and I like the idea of having login area and register area separate - is it related to Easy Sign-Up and Login?
If so, could you please direct me to the url where I can download it?
thank you.
-
possible bug?
I'm not sure if this has to do with me using the tpl_checkout_default from v1.05 instead of the one in v1.26. I have upgraded all of the other files to FEC v1.26(although of course my FEC won't call tpl_checkout_split or _stacked).
The refresh button on the coupon field doesn't work plus when changing shipping methods the page is not automatically refreshed to show the new shipping price.
I checked through the files and finally figured out that modules>pages>checkout>jscript_main.php is different from v1.05. The difference is the old version uses document.checkout while the new version uses document.checkout_payment throughout the file. Apart from that the files are identical. Once I changed it to the v1.05 file the refreshes worked.
Has anyone else experienced this or is it just me?
-
Re: possible bug?
Quote:
Originally Posted by
lankeeyankee
I'm not sure if this has to do with me using the tpl_checkout_default from v1.05 instead of the one in v1.26. I have upgraded all of the other files to FEC v1.26(although of course my FEC won't call tpl_checkout_split or _stacked).
The refresh button on the coupon field doesn't work plus when changing shipping methods the page is not automatically refreshed to show the new shipping price.
I checked through the files and finally figured out that modules>pages>checkout>jscript_main.php is different from v1.05. The difference is the old version uses document.checkout while the new version uses document.checkout_payment throughout the file. Apart from that the files are identical. Once I changed it to the v1.05 file the refreshes worked.
Has anyone else experienced this or is it just me?
Yes, it was changed to checkout_payment throughout the module to avoid compatibility issues with payment modules. Of course the JavaScript will not work if the form names do not match...
-
Re: possible bug?
Quote:
Originally Posted by
numinix
Yes, it was changed to checkout_payment throughout the module to avoid compatibility issues with payment modules. Of course the JavaScript will not work if the form names do not match...
Thanks for the clarification. I changed the zen_draw_form to ('checkout_payment' .....) and the message_stack error from checkout to checkout_shipping and it works now, apart from the TEXT_VALID_COUPON message doesn't display when a coupon is redeemed. I checked it out in /includes/modules/order_total/ot_coupon.php and the code is:
PHP Code:
$messageStack->add_session('checkout', TEXT_VALID_COUPON,'success');
If I change it to:
PHP Code:
$messageStack->add_session('checkout_payment', TEXT_VALID_COUPON,'success');
it works.
One thing that I have noticed, a user can only redeem one coupon during checkout. So if they have 2 separate coupons they cannot use both during checkout. Is this a default ZC behavior, or is it specific to FEC?
-
Re: possible bug?
Quote:
Originally Posted by
lankeeyankee
Thanks for the clarification. I changed the zen_draw_form to ('checkout_payment' .....) and the message_stack error from checkout to checkout_shipping and it works now, apart from the TEXT_VALID_COUPON message doesn't display when a coupon is redeemed. I checked it out in
/includes/modules/order_total/ot_coupon.php and the code is:
PHP Code:
$messageStack->add_session('checkout', TEXT_VALID_COUPON,'success');
If I change it to:
PHP Code:
$messageStack->add_session('checkout_payment', TEXT_VALID_COUPON,'success');
it works.
One thing that I have noticed, a user can only redeem one coupon during checkout. So if they have 2 separate coupons they cannot use both during checkout. Is this a default ZC behavior, or is it specific to FEC?
Thank you for the report.
For your last question, you'll have to test on a default installation and see how it reacts.
-
Re: Fast and Easy Checkout for Zen Cart
Hello Numinix, thank you for this wonderful module.
I've been using it for quite a while and just updated to the latest version today, and noticed something not working as before.
With the previous version I was having a google checkout radio button on the checkout stacked page and with the latest version, the google checkout payment option disappeared from the page.
I was wondering if this is some issue that was not reported?
I would like to have the option for customers to select either paypal or google checkout at the last minute on the payment processing in case they change their minds without having to hit the back button. Is this possible to have it included again?
Thank you!
MV./
-
Re: Fast and Easy Checkout for Zen Cart
Hi
search through - I am not sure whether I could do FEC with Google Checkout?
Also, I would like to know where I can find shipping estimator in FEC as I noticed that most FEC users have shipping estimator while I dont on mine.
Thanks
-
Re: Fast and Easy Checkout for Zen Cart
one more - I notice that after test by creating multiple accounts for fake customers, those "fake" customers don't receive the emails after first two emails. Where does it go wrong?
When I click check out and choose COWOA, I notice that when I type billing address and check the checkbox to apply to shipping address, it doesn't append to shipping address fields when I click continue and go next page?
I didn't want DOB on checkout page (tpl_module_no_account) so I removed DOB - is it ok or safe?
thanks
-
Re: Fast and Easy Checkout for Zen Cart
One more question.
I just did a test purchase, and when I click the Confirm Order button, the order confirmation page stays for a very brief moment, is it possible to make it stay long enough for customer to review and read the details as I have important information on it, or better yet make it static instead of refreshing and uploading the account page?
Thank you!
-
Re: Fast and Easy Checkout for Zen Cart
Ah! never mind, I figure this last one out. There is a setting in admin area that controls this.
-
Re: Fast and Easy Checkout for Zen Cart
Question: Is it correct that you sill have to fill in your e-mail and password on the easy checkout??
I thought it was without those possible?
They have both a * behind it and seems to be needed then.
Grtz.
Richard.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Richard-nl
Question: Is it correct that you sill have to fill in your e-mail and password on the easy checkout??
I thought it was without those possible?
They have both a * behind it and seems to be needed then.
Grtz.
Richard.
You are referring to a different mod called: Easy Sign-up and Login. It gives three options: Login, Register, or checkout without an account.
-
Re: Fast and Easy Checkout for Zen Cart
I indeed found out that I have to install COWOA. :)
This module makes it only easyer to register.
Thanks.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Richard-nl
I indeed found out that I have to install COWOA. :)
This module makes it only easyer to register.
Thanks.
COWOA is already setup with Easy Sign-Up and Login and includes some enhanced features.
-
Re: Fast and Easy Checkout for Zen Cart
Does this work fine with 1.3.8?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
swamyg1
Does this work fine with 1.3.8?
yes it does
-
Re: Fast and Easy Checkout for Zen Cart
I found the problem. :(
My error.
In the sql patch I forgot:
# Remove the #s below if you have not already installed FEC
And I installed 1.2.6 and not the latest one.
Thats why I missed a lot of extra's and whas not working as it should be.
I updated the SQL and the version now.
Thanks and keep on the good work.
-
Re: Fast and Easy Checkout for Zen Cart
Does Fast and Easy Checkout support the use of gift certificates? I'm currently using COCOA and can therefore not use gift certificates.
-
Re: Fast and Easy Checkout for Zen Cart
Okay I just updated Easy Signup and Login from 1.16 to 1.19, I need to put FEC on my site, I know i should have put FEC first but I had Easy Signup for over a year... How do I installed FEC with Easy Signup already installed? I read to delete the two lines containing delete in the FEC sql..what about the admin/order.php and packingslip.php do you over write them? or merge? if you merge them how do you because i looked at them both and they both contain about 50% the same...
---Also never figured out the show with confience box..have been reading every where when i installed easy signup and login there has never been any options in the admin? Normal?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
ryanb4614
Okay I just updated Easy Signup and Login from 1.16 to 1.19, I need to put FEC on my site, I know i should have put FEC first but I had Easy Signup for over a year... How do I installed FEC with Easy Signup already installed? I read to delete the two lines containing delete in the FEC sql..what about the admin/order.php and packingslip.php do you over write them? or merge? if you merge them how do you because i looked at them both and they both contain about 50% the same...
---Also never figured out the show with confience box..have been reading every where when i installed easy signup and login there has never been any options in the admin? Normal?
Try using a Windows program called WinMerge.
-
Re: Fast and Easy Checkout for Zen Cart
Can somebody please help me understand the difference between Easy sign up and login and FEC? I see many people have both installed... is this necessary?
I'm not sure how COWOA works with either of these as well, if somebody could enlighten me I would REALLY appreciate it.
-
Re: Fast and Easy Checkout for Zen Cart
Maybe start by reading here:
http://www.zen-cart.com/index.php?ma...roducts_id=845
Each supplied mod has a description that should make it clear what it is for. If it still is not clear, download and read the included readme.txt that most contributors supply. Just look for the mods in question in the Free Software Add On.
-
Re: Fast and Easy Checkout for Zen Cart
I have been using this mod in 1 page checkout format for some time now until recently when i decided to use direct bank deposit as a payment method in which i disable one page checkout so customers could see the bank details on confirmation page... Anyway i noticed i get an error when checing out:
Line: 111
Char: 3
Error: object required
Code: 0
URL:https://www.truwater.com.au/index.ph...c_confirmation
Anyone know what this could be?
-
Re: Fast and Easy Checkout for Zen Cart
Credit Card CVV Number
Minimum length of credit card CVV number id set to 3
BUT customers can check out without giving the CVV, why?
Collect CVV is set to true as well. Does this have to do with Easy Checkout?
This function works with the standard checkout steps at
Step 2 of 3 - Payment Information
Errors have occurred during the processing of your form.
Please make the following corrections:
* The CVV number must be at least 3 characters.
This is what should happen with the mod as well I assume, but it is not working.
-
Re: Fast and Easy Checkout for Zen Cart
mydanilo, I would need to look at your server, can you please send a PM or email to webmaster AT numinix DOT com.
-
Re: Fast and Easy Checkout for Zen Cart
numinix, thanks for offering. Turns out that if I use cc.php offline credit card mod it works fine with the cvv warning. I want to use the qbms.php quickbooks merchant payment module. Seems like the verification JavaScript is not working correctly. I think it was made for a older zen version where no pop up warning was used. I would love to have it modified to give me the same pop up warning. Here is the script that needs to be modified:
HTML Code:
// function javascript_validation: Validates the submitted payment details.
function javascript_validation() {
$js = ' if (payment_value == "' . $this->code . '") {' . "\n" .
' var cc_owner = document.checkout_payment.qbms_cc_owner.value;' . "\n" .
' var cc_number = document.checkout_payment.qbms_cc_number.value;' . "\n" .
' if (cc_owner == "" || cc_owner.length < ' . CC_OWNER_MIN_LENGTH . ') {' . "\n" .
' error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_OWNER . '";' . "\n" .
' error = 1;' . "\n" .
' }' . "\n" .
' if (cc_number == "" || cc_number.length < ' . CC_NUMBER_MIN_LENGTH . ') {' . "\n" .
' error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_NUMBER . '";' . "\n" .
' error = 1;' . "\n" .
' if (' . MODULE_PAYMENT_QBMS_VERIFY_WITH_CVV2 . ' == "True") {' . "\n" .
' var cc_cvv2 = document.checkout_payment.qbms_cc_cvv2.value;' . "\n" .
' if (cc_cvv2 == "" || cc_number.length < ' . 3 . ') {' . "\n" .
' error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_CVV2 . '";' . "\n" .
' error = 1;' . "}\n" .
' }' . "\n" .
' }' . "\n" .
' }' . "\n";
return $js;
I know you are a programmer. Would you agree that this is the problem?