-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
mydanilo
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?
No the problem is your files are not all up to date:
Viewing the source I see:
PHP Code:
<form name="checkout" action="https://www.mydanilo.com/fec_confirmation" method="post" id="checkout" onsubmit="submitonce();">
This should say id="checkout_payment".
Get the latest version from the Numinix website.
-
Re: Fast and Easy Checkout for Zen Cart
Mydanilo - please see solution posted on other thread:
http://www.zen-cart.com/forum/showpo...&postcount=130
-
Skip pages- Billing, Shipping, Cart
I have the latest FEC and ESL- thanks, Numinix!
- Does anyone know how the Billing page can be skipped for COWOA? I'd like this because A) I use PayPal and would rather customers get to PP one step faster (even though the Billing info is copied to PP) and B) it seems counter-productive to ask for Billing on my site when I'm giving them a COWOA option. Some people don't like giving their personal info to so many websites.
- Can the Shipping page also be skipped? I sell gift items and the Product Info page includes an attribute text-field to fill out the recipient's address, so skipping the page will make the process that much faster.
(I figure the attribute method is a simple way to get multiple delivery addresses with multiple items or quantity- one at a time when adding to cart. As for account holders who would order more than once over time and ship to the same person, I figure it's not a hassle for them to view a past order and copy and paste a name and address, as opposed to the standard method of being able to check off previos names and addresses.)
- Can clicking Add To Cart skip the Cart Contents page? I've seen this before, but I'm not clear on the answer. Since the Checkout page shows the Cart Contents box with an edit button, I figure there must be a way to speed up this process.
I understand the system first has to save the cart contents info after clicking Add To Cart, but can the next page be blank for a second or two and automatically redirect to the next step/page?
Cheers,
Robbie
-
Re: Skip pages- Billing, Shipping, Cart
As for the Shipping page, I just realized that info is necessary to calculate tax. So I would probably still keep my system of the recipient attribute field and now use the Shipping page, but delete/disable all the fields except for Province and Country. I'm not a programmer, but am usually good at following directions and figuring out little things...is this possible and safe? Do I simply use code like // or <--- to block out the fields?
And for these two little fields, is there still a way to skip the Shipping page but put these two fields on the next page?
Thanks,
Robbie
-
Re: Fast and Easy Checkout for Zen Cart
Im looking for assistance with this module...
I need to change a payment module redirection when it errors.
Currently its refering to checkout_payment but obvously this page is no longer used when in 1 page checkout.
Here is the code:
PHP Code:
zen_redirect(zen_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(MODULE_PAYMENT_STGEORGEHPP_TEXT_FAILED_MESSAGE . " " . $response_text), 'SSL', true, false));
How can i change this code to refer back to this page correctly so i dont get a 406 error?
PHP Code:
index.php?main_page=checkout&action=null
I need it to redirect back to this page so payment can be re done.
-
Redirect Loop caused by PayPal Express?
Okay, you can ignore my other questions just prior as I realized PayPal Express (PPE) helps speed up Checkout, at least for those who don't wish to create an account.
But when I have PPE installed and use normal or COWOA Checkout, I get that FireFox message of, "Firefox has detected that the server is redirecting the request for this address in a way that will never complete..." With normal Checkout, I get this after clicking Submit on the Create Acc't page and with COWOA I get this after Submit on the Shipping Address page.
And I'm pretty sure the problem is PPE because I turned many things on and off (One-Page, COWOA, PPE, etc.) and everything's fine with PPE off.
I don't have a SEO module installed (I read a previous post that it may cause Redirect Loop). I have the latest FEC and ESL and ZC 1.38a.
The site is alexandergifts *dot* ca (right now COWOA is off, One-Page on and PPE on). Only Flowers are currently live.
Any ideas, please?
Robbie
-
1 Attachment(s)
Re: Fast and Easy Checkout for Zen Cart
Hi Numinix,
I have a little formatting issue that has been driving me mad since I can't figure it out!:D
In the order totals the shipping method is wrapped in brackets and I can't get rid of them. I see in the checkout/header_php file in the case statements that the ' (' and ')' are added into the shipping method and I have removed those. Now, if a new shipping method is selected, the page is refreshed and the brackets are removed. But where oh where do I find where the original enclosing method brackets are so I can remove them?? I have looked through every file I can think of, order_total/ot_shipping.php, classes/shipping.php, but can't find it.
Attached is a screenshot of what I mean, in this case it's wrapping UPS(Ground). Can anyone please help me resolve this niggling issue?
Thanks!
Matt
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
gee38l
Im looking for assistance with this module...
I need to change a payment module redirection when it errors.
Currently its refering to checkout_payment but obvously this page is no longer used when in 1 page checkout.
Here is the code:
PHP Code:
zen_redirect(zen_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(MODULE_PAYMENT_STGEORGEHPP_TEXT_FAILED_MESSAGE . " " . $response_text), 'SSL', true, false));
How can i change this code to refer back to this page correctly so i dont get a 406 error?
PHP Code:
index.php?main_page=checkout&action=null
I need it to redirect back to this page so payment can be re done.
Anyone?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
gee38l
Anyone?
That is incorrect. FEC overrides both checkout_shipping and checkout_payment so that all links are directed to "checkout".
If a payment method isn't returning an error from checkout_process, it is because the author forgot to create a message stack error and then use the "payment_error" in the redirect to checkout_payment. In your case, you will need to add an additional check to FEC to not redirect if a parameter called "error_message" exists and display the value as an alert to the visitor.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
COWOA is already setup with Easy Sign-Up and Login and includes some enhanced features.
I've been going in circles here...
I have installed (in this order):
1) Fast and Easy Checkout
2) Easy Signup and Login
I then enabled COWOA in the admin.
Now when I click to COWOA it's still two more pages: billing address, then credit card info.
Is there not a way to click COWOA and then go to the ONE-PAGE checkout (including shipping options, address, and cc all in one page)??
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
That is incorrect. FEC overrides both checkout_shipping and checkout_payment so that all links are directed to "checkout".
If a payment method isn't returning an error from checkout_process, it is because the author forgot to create a message stack error and then use the "payment_error" in the redirect to checkout_payment. In your case, you will need to add an additional check to FEC to not redirect if a parameter called "error_message" exists and display the value as an alert to the visitor.
Sorry but i have no idea how to do this can you assist please?
-
Re: Fast and Easy Checkout for Zen Cart
Have Fast and Easy Checkout 1.28 installed on zen 1.37 without easy login (have made the change to create account). Gift wrapping is not installed.
Checking the Shipping Insurance checkbox does not update the order totals or refresh the page.
Selecting any of the other order totals turned on and clicking the refresh button does not add them to the total either. When the page refreshes they are all unchecked again.
The update form javascript appears to be working because if you change the redirect url it calls the cart is correctly redirected. It is just not updating when called.
Payment and shipping modules are working okay - it is just all of the order totals that are not.
Turning off FEC and using standard zen checkout works again - the order totals are displayed.
Is there any reason why this would occur? I can't find any one else having this problem so am mystified as to why it would occur.
-
Re: Fast and Easy Checkout for Zen Cart
Hi,
I love this mod, but after I installed it, my footer disappeared from the Log In page!
You can see my store's login page at http://www.eyemagic.net/store/index.php?main_page=login
Any ideas on how to get the footer to show up again?
Thanks!
Dave
-
Telephone Field missing in COWOA - Fast and Easy Checkout
I know I've asked a few questions, but I'm much closer to finishing the site so I hope to no longer trouble you!
I just noticed this, though everything else has been working fine- there's no telephone field on the COWOA Billing page. I set the Minimum Value to blank and removed the asterik so that it should not be mandatory. I tinkered around in tpl_modules_no_account.php, but didn't guess right.
(Funny thing is, the phone field was also missing from the regular Create Acc't page, but another post helped me on that...I basically re-copied a chunk of code from the original tpl_modules_create_account.php.)
I have the latest FEC and ESL. ZC 1.38a.
Here's the whole fieldset of code containing the telephone part from ...no_account.php. You'll notice I blocked out the newsletter part, I figure why show it if it's COWOA. But the phone field was missing before I did that today.
PHP Code:
<fieldset>
<legend><?php echo TABLE_HEADING_CONTACT_DETAILS; ?></legend>
<label class="inputLabel" for="email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
<?php echo zen_draw_input_field('email_address', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="email-address"') . (zen_not_null(ENTRY_EMAIL_ADDRESS_TEXT) ? '<span class="alert">' . ENTRY_EMAIL_ADDRESS_TEXT . '</span>': ''); ?>
<?php if (FEC_CONFIRM_EMAIL == 'true') { ?>
<br class="clearBoth" />
<label class="inputLabel" for="email-address-confirm"><?php echo ENTRY_EMAIL_ADDRESS_CONFIRM; ?></label>
<?php echo zen_draw_input_field('email_address_confirm', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="email-address-confirm"') . (zen_not_null(ENTRY_EMAIL_ADDRESS_TEXT) ? '<span class="alert">' . ENTRY_EMAIL_ADDRESS_TEXT . '</span>': ''); ?>
<br class="clearBoth" />
<?php } ?>
<!-- BEGIN CHECKOUT WITHOUT ACCOUNT -->
<?php if (FEC_NOACCOUNT_HIDEEMAIL == 'false') { ?>
<br class="clearBoth" />
<?php echo zen_draw_radio_field('email_format', 'HTML', ($email_format == 'HTML' ? true : false),'id="email-format-html"') . '<label class="radioButtonLabel" for="email-format-html">' . ENTRY_EMAIL_HTML_DISPLAY . '</label>' . zen_draw_radio_field('email_format', 'TEXT', ($email_format == 'TEXT' ? true : false), 'id="email-format-text"') . '<label class="radioButtonLabel" for="email-format-text">' . ENTRY_EMAIL_TEXT_DISPLAY . '</label>'; ?>
<?php } else { ?>
<input type="hidden" name="email_format" value="TEXT" checked="checked" id="email-format-text" />
<?php } ?>
<!-- END CHECKOUT WITHOUT ACCOUNT -->
<!-- <?php
if (ACCOUNT_NEWSLETTER_STATUS != 0) {
?>
<?php echo zen_draw_checkbox_field('newsletter', '1', $newsletter, 'id="newsletter-checkbox"') . '<label class="checkboxLabel" for="newsletter-checkbox">' . ENTRY_NEWSLETTER . '</label>' . (zen_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="alert">' . ENTRY_NEWSLETTER_TEXT . '</span>': ''); ?>
-->
<?php } ?>
<?php
if (ACCOUNT_TELEPHONE == 'true') {
?>
<br class="clearBoth" />
<label class="inputLabel" for="telephone"><?php echo ENTRY_TELEPHONE_NUMBER; ?></label>
<?php echo zen_draw_input_field('telephone', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_telephone', '40') . ' id="telephone"') . (zen_not_null(ENTRY_TELEPHONE_NUMBER_TEXT) ? '<span class="alert">' . ENTRY_TELEPHONE_NUMBER_TEXT . '</span>': ''); ?>
<?php } ?>
<?php
if (ACCOUNT_FAX_NUMBER == 'true') {
?>
<br class="clearBoth" />
<label class="inputLabel" for="fax"><?php echo ENTRY_FAX_NUMBER; ?></label>
<?php echo zen_draw_input_field('fax', '', 'id="fax"') . (zen_not_null(ENTRY_FAX_NUMBER_TEXT) ? '<span class="alert">' . ENTRY_FAX_NUMBER_TEXT . '</span>': ''); ?>
<?php
}
?>
</fieldset>
Any ideas to save the day, as usual?
Cheers,
Robbie
-
Re: Telephone Field missing in COWOA - Fast and Easy Checkout
Quote:
Originally Posted by
giftmeister
I know I've asked a few questions, but I'm much closer to finishing the site so I hope to no longer trouble you!
I just noticed this, though everything else has been working fine- there's no telephone field on the COWOA Billing page. I set the Minimum Value to blank and removed the asterik so that it should not be mandatory. I tinkered around in tpl_modules_no_account.php, but didn't guess right.
(Funny thing is, the phone field was also missing from the regular Create Acc't page, but another post helped me on that...I basically re-copied a chunk of code from the original tpl_modules_create_account.php.)
I have the latest FEC and ESL. ZC 1.38a.
Here's the whole fieldset of code containing the telephone part from ...no_account.php. You'll notice I blocked out the newsletter part, I figure why show it if it's COWOA. But the phone field was missing before I did that today.
PHP Code:
<fieldset>
<legend><?php echo TABLE_HEADING_CONTACT_DETAILS; ?></legend>
<label class="inputLabel" for="email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
<?php echo zen_draw_input_field('email_address', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="email-address"') . (zen_not_null(ENTRY_EMAIL_ADDRESS_TEXT) ? '<span class="alert">' . ENTRY_EMAIL_ADDRESS_TEXT . '</span>': ''); ?>
<?php if (FEC_CONFIRM_EMAIL == 'true') { ?>
<br class="clearBoth" />
<label class="inputLabel" for="email-address-confirm"><?php echo ENTRY_EMAIL_ADDRESS_CONFIRM; ?></label>
<?php echo zen_draw_input_field('email_address_confirm', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="email-address-confirm"') . (zen_not_null(ENTRY_EMAIL_ADDRESS_TEXT) ? '<span class="alert">' . ENTRY_EMAIL_ADDRESS_TEXT . '</span>': ''); ?>
<br class="clearBoth" />
<?php } ?>
<!-- BEGIN CHECKOUT WITHOUT ACCOUNT -->
<?php if (FEC_NOACCOUNT_HIDEEMAIL == 'false') { ?>
<br class="clearBoth" />
<?php echo zen_draw_radio_field('email_format', 'HTML', ($email_format == 'HTML' ? true : false),'id="email-format-html"') . '<label class="radioButtonLabel" for="email-format-html">' . ENTRY_EMAIL_HTML_DISPLAY . '</label>' . zen_draw_radio_field('email_format', 'TEXT', ($email_format == 'TEXT' ? true : false), 'id="email-format-text"') . '<label class="radioButtonLabel" for="email-format-text">' . ENTRY_EMAIL_TEXT_DISPLAY . '</label>'; ?>
<?php } else { ?>
<input type="hidden" name="email_format" value="TEXT" checked="checked" id="email-format-text" />
<?php } ?>
<!-- END CHECKOUT WITHOUT ACCOUNT -->
<!-- <?php
if (ACCOUNT_NEWSLETTER_STATUS != 0) {
?>
<?php echo zen_draw_checkbox_field('newsletter', '1', $newsletter, 'id="newsletter-checkbox"') . '<label class="checkboxLabel" for="newsletter-checkbox">' . ENTRY_NEWSLETTER . '</label>' . (zen_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="alert">' . ENTRY_NEWSLETTER_TEXT . '</span>': ''); ?>
-->
<?php } ?>
<?php
if (ACCOUNT_TELEPHONE == 'true') {
?>
<br class="clearBoth" />
<label class="inputLabel" for="telephone"><?php echo ENTRY_TELEPHONE_NUMBER; ?></label>
<?php echo zen_draw_input_field('telephone', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_telephone', '40') . ' id="telephone"') . (zen_not_null(ENTRY_TELEPHONE_NUMBER_TEXT) ? '<span class="alert">' . ENTRY_TELEPHONE_NUMBER_TEXT . '</span>': ''); ?>
<?php } ?>
<?php
if (ACCOUNT_FAX_NUMBER == 'true') {
?>
<br class="clearBoth" />
<label class="inputLabel" for="fax"><?php echo ENTRY_FAX_NUMBER; ?></label>
<?php echo zen_draw_input_field('fax', '', 'id="fax"') . (zen_not_null(ENTRY_FAX_NUMBER_TEXT) ? '<span class="alert">' . ENTRY_FAX_NUMBER_TEXT . '</span>': ''); ?>
<?php
}
?>
</fieldset>
Any ideas to save the day, as usual?
Cheers,
Robbie
Turn on the telephone field in ADMIN->CONFIGURATION->CUSTOMER DETAILS.
-
Re: Telephone Field missing in COWOA - Fast and Easy Checkout
Sorry I forgot to mention it- the Tel option is also missing in Config->Customer Details. Though the fax option is there.
(I think I read elsewhere that Customer Details never has that Tel option of on or off, just the ability of making it non-mandatory by making it blank minumum value and removing the *.)
R
-
Re: Telephone Field missing in COWOA - Fast and Easy Checkout
Quote:
Originally Posted by
giftmeister
Sorry I forgot to mention it- the Tel option is also missing in Config->Customer Details. Though the fax option is there.
(I think I read elsewhere that Customer Details never has that Tel option of on or off, just the ability of making it non-mandatory by making it blank minumum value and removing the *.)
R
You'll find the command for installing the telephone configuration in the install.sql file. The command is commented out by default as there is also a separate module that does the same thing.
-
Re: Fast and Easy Checkout for Zen Cart
I just found the 'Fast and Easy Checkout' mod and it seems like a wonderful mod and I would like to install it but I saw the following 'known issues' on the support website so I thought I'd better ask for advice first...
PHP Code:
Known Issues:
============
This module may conflict with other modules that have edited the following file(s):
* tpl_checkout_confirmation_default.php
Some users have reported compatibility issues with Ultimate SEO URLs. For the highest compatibility, please use Magic SEO URLs.
I currently have the "Order Steps Tableless" ("OST") and "Simple SEO URL" ("SSU") mods installed and working on my website.
Are there any known issues with "FEC" mod and "SSU"?
Also, I know that the "OST" mod has modified my tpl_checkout_confirmation_default.php file.
Do I just delete my current tpl_checkout_confirmation_default.php file (backup FIRST of coarse) and then just upload the one that comes in the "FEC" mod? I will probably uninstall the "OST" mod anyway after successful "FEC" install since it would seem redundant with a one-page checkout.
Any tips or advice on the "SSU" mod compatibility and the tpl_checkout_confirmation_default.php file would be appreciated.
thanks
-
Re: Fast and Easy Checkout for Zen Cart
Almost done!
I found that command in ESL. After removing the #, do I re-install the entire SQL file? Or just that line (and how)? As you can tell, I'm not as knowledgable as you and need a little more detail, please, so as to not risk anything. :wink:
Thanks a bunch,
R
PHP Code:
# REMOVE THE # BELOW IF YOU HAVE NOT ALREADY MODIFIED YOUR ZEN CART TO BE ABLE TO DISABLE THE TELEPHONE SIGN-UP FIELD
# INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Telephone Number', 'ACCOUNT_TELEPHONE', 'true', 'Display telephone number field during account creation and with account information', '5', '8', 'zen_cfg_select_option(array(\'true\', \'false\'), ', now());
-
Re: Fast and Easy Checkout for Zen Cart
Just use this command as the others would have already been processed:
PHP Code:
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Telephone Number', 'ACCOUNT_TELEPHONE', 'true', 'Display telephone number field during account creation and with account information', '5', '8', 'zen_cfg_select_option(array(\'true\', \'false\'), ', now());
-
Re: Fast and Easy Checkout for Zen Cart
I just installed fast and easy check out and this is what i'm getting on top of that it won't let me in the admin part
please help me
Warning: Cannot modify header information - headers already sent by (output started at /home2/deliverm/public_html/admin/includes/languages/english/extra_definitions/fec.php:3) in /home2/deliverm/public_html/admin/includes/init_includes/init_templates.php on line 36
Warning: Cannot modify header information - headers already sent by (output started at /home2/deliverm/public_html/admin/includes/languages/english/extra_definitions/fec.php:3) in /home2/deliverm/public_html/admin/includes/functions/general.php on line 21
-
Re: Fast and Easy Checkout for Zen Cart
Hi
I have v1.38 and FEC. I have just installed the Gift Wrapping module and have run into the same problem that has been reported before, namely when I check an item for giftwrapping, the supplement is added to the total, but the checkbox does not remain checked when the page is refreshed. If I check another item to be wrapped, the cost is not added to the total.
Looking through previous posts there is a suggestion that the shipping module could be the issue - however I have tried several of the 'inbuilt' modules and the problem exists with all of them.
Before I start digging further, can anyone point me in the right direction?
cheers
Dave
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
HPG09
Hi
I have v1.38 and FEC.
PS forgot to say, I have COWAO installed too.
-
Re: Fast and Easy Checkout for Zen Cart
-
Re: Fast and Easy Checkout for Zen Cart
I finally after four months got this working.
I guess thats experience for you and determination to get it working.
One small thing though that i would like to change. I have it set up as a one page checkout and it's much faster but i do get a second page that loads briefly before automatically going onto Nochex for the payment to be processed. Can i stop this second page loading and have the first page go directly to Nochex or can i have the second page stay for about 5 seconds or so before automatically loading to Nochex ?
The activate checkbox field says signature in it ?
Is that for allowing the customer to specify a sgnature on delivery ?
Thanks for any help you can offer i am very pleased with the new look checkout pages.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
need_help
I finally after four months got this working.
I guess thats experience for you and determination to get it working.
One small thing though that i would like to change. I have it set up as a one page checkout and it's much faster but i do get a second page that loads briefly before automatically going onto Nochex for the payment to be processed. Can i stop this second page loading and have the first page go directly to Nochex or can i have the second page stay for about 5 seconds or so before automatically loading to Nochex ?
The activate checkbox field says signature in it ?
Is that for allowing the customer to specify a sgnature on delivery ?
Thanks for any help you can offer i am very pleased with the new look checkout pages.
I'll be interested in this too, because I'm intending to use Nochex. Not got quite as far as that yet, though.
-
Re: Fast and Easy Checkout for Zen Cart
Hi there,
I am using zen 1.3.7 and have installed fast and easy checkout about 5 days ago.
I use, paypal, google checkout and nochex payment processors.
It has been working fine for about 5 days, until just now, its given me two orders in the admin, when the customer has just paid once with nochex.
I have searched the threat for duplicate orders or double orders and couldnt find anything.
Anyone have any ideas?
Phil
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
phil99
It has been working fine for about 5 days, until just now, its given me two orders in the admin, when the customer has just paid once with nochex.
I have searched the threat for duplicate orders or double orders and couldnt find anything.
Anyone have any ideas?
Phil
There are plenty of these threads, I just searched for duplicate orders and found oodles of them. Ignoring the PayPal-specific issues, for example http://www.zen-cart.com/forum/showthread.php?t=95195 and http://www.zen-cart.com/forum/showthread.php?t=60932 just to name a couple.
-
thumbnail in demo
Hi,
I have just installed this mod. Brilliant work, a big thank you to the contributors. After I verify my translation work, I might be able to contribute myself with a french, german and spanish translation of the language files (unless they already exist and I missed them !).
My question in this post is about the product thumbnail which is displayed on the numinix.com demo, in the "Shopping Cart Contents" box of the checkout page. I have searched but could not find how to display the thumbnail. Any help will be appreciated.
Regards,
Denis
-
Re: Fast and Easy Checkout for Zen Cart
Just installed FEC and ESL in ZC v1.3.8 no other mods yet.
I was missing A LOT of page specific defines. i have managed to fix all of them but one.
on the COWOA billing info page. i was missing ALL the defines. i found that the "no_account_filenames.php" file in the "extra_datafiles" folder controlled these and fixed them.
except for the text next to the "copy to shipping" check box. i was able to fix part of it. but there is still text there in red that i cannot find out how to get rid of or change.
the line next to the check box used to read:
(ENTRY_COPYBILLING ENTRY_COPYBILLING_TEXT)
i have successfully changed the "ENTRY_COPYBILLING" part to something more appropriate by inserting this line of code " define('ENTRY_COPYBILLING', 'Copy to Shipping Information Page'); " in the "no_account_filenames.php" file
but the "ENTRY_COPYBILLING_TEXT" is still there.
can someone tell me where to fix this last part?
P.S.
i have the same problem with the emails sent out but have not attempted to fix them yet. found a thread on that issue elsewhere and that is what led me to being able to fix what i have so far on these pages.
i am on a deadline and would really appreciate any help you can give me
thx
-
Re: Fast and Easy Checkout for Zen Cart
-
Re: Fast and Easy Checkout for Zen Cart
this is strange issue
i have no idea where to begin to fix.
"Checkout Without an Account" has taken over half of my page headings and titles!
"Checkout Without an Account" appears as the heading,
"No Account Checkout" shows up as current page in the breadcrumb navbar and as page title.
all 3 of the above issues occurs on EVERY page that is controlled through Define Pages Editor.
where do i start to fix this?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
That is incorrect. FEC overrides both checkout_shipping and checkout_payment so that all links are directed to "checkout".
If a payment method isn't returning an error from checkout_process, it is because the author forgot to create a message stack error and then use the "payment_error" in the redirect to checkout_payment. In your case, you will need to add an additional check to FEC to not redirect if a parameter called "error_message" exists and display the value as an alert to the visitor.
Jeff, I'm in the same boat with customers not receiving the message for AVS Mismatch and Card code error at least. Can you walk us through this?
-
Re: Fast and Easy Checkout for Zen Cart
BTW, I'm using Authorize.net AIM for cc processing if that helps identify the area i need to fix. Thanks!
-
Re: Fast and Easy Checkout for Zen Cart
Hi there,
I am on v1.2.8 on zen 1.3.7 and it throws this bug for me too. Have customers from new zealand unable to checkout.
Is there a fix?
Phil
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
DanTheMan
Hey Numinix, very useful contrib, thanks!
One issue, though - it seems to crash under the following conditions:
If the "ship to" country is not defined or listed as "skip" in the shipping module, pressing "Continue Checkout" (main_page=checkout) causes the crash. Same crash occurs if you try to select an unsupported country from the address book (main_page=checkout_shipping_address).
The crash shows up as "Internet Explorer cannot display the webpage" in IE and "Page Load Error - Redirect Loop - server is redirecting the request for this address in a way that will never complete" in Firefox. :oops:
Unmodified (stock) ZC will not proceed from checkout Step 1 to Step 2 until you change the shipping address to a country that is supported by at least one shipping module, but FEC just crashes.
Using FEC 1.16, ZC 1.3.8a with SSL enabled.
Any ideas?
Sorry this bug! I get this too on latest version
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
cropinstop
Found the solution.
An "attribute stock exceeded" check is missing from "includes/modules/pages/checkout/header_php.php". This file is unique to the "Fast and Easy Checkout" contribution. .....
I'm having a problem with FEC: my installation of FEC made the checkout process STOP checking out the 'stock by attributes' module completely. So it doesn't reduce the stock.
Any clue what's happening? Thanks in advance.
-
Re: Fast and Easy Checkout for Zen Cart
First of all: Thanks numinix for contributing with this great add on. Really appreciate it.
I have just installed "faster easy checkout" (v1.3.8). When using Opera and for example the customer is logged in and chooses "log of" he receives the message:
"The URL was redirected to. Please click the link to go there."
I didnt have this problem before installing the easy checkout.
I have both deleted my cookies, logged of and logged in and also tried this on a another computer with opera too (which has never been on my site). The version of opera is up to date. Automatic redirection is also enabled.
I dont have this problems with firefox or explorer.
Anyone knows why i get this? And what to do? Off course some customers may use opera so it is very annoying.
Thanks
-
Re: Fast and Easy Checkout for Zen Cart
Hello,
I had this mod installed and running PERFECTLY. I recently tried (and failed) to install a BuySafe module along with my cart. I ran into some trouble and had to uninstall the mod. I then reinstalled my backup of the site, and now the checkout process is getting stuck on the fec_confirmation page (saying that the order is processing) and then never going to the success page. The information is being relayed to authorize.net, it's just there is no further action after that. ANY help would be greatly appreciated. Thank you.
-
Re: Fast and Easy Checkout for Zen Cart
Fixed my problem it was a stupid error I made by not completely removing the some database entries from the buysafe module.
Still loving the FEC :)
-
Re: Fast and Easy Checkout for Zen Cart
I have the Fast and Easy Checkout mod installed and it's been giving me problems when customers try to create an account. Basically, they will place orders without setting up an account, but when they try to create an account later on, they cannot use the same email address. So, I need to delete all their customer info from the admin before they set one up. Isn't there a way to fix this?
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
fright-rags
I have the Fast and Easy Checkout mod installed and it's been giving me problems when customers try to create an account. Basically, they will place orders without setting up an account, but when they try to create an account later on, they cannot use the same email address. So, I need to delete all their customer info from the admin before they set one up. Isn't there a way to fix this?
You probably missed some edits. It's the best to go back to the installation file, re-read and check everything. Also, visit the author site to see if there is any new version.
-
Re: Fast and Easy Checkout for Zen Cart
hello, everyone,
can you pleas help me?
i installed this mod today, but some error occured.
after FTP all files to my server, when open my admin in browser, warning occoured:(i did not install Easy Sign-Up and Login mod )
Warning: Cannot modify header information - headers already sent by (output started at ..\admin\includes\languages\english\extra_definitions\fec.php:1) in ..\admin\includes\init_includes\init_templates.php on line 36
what probably is the problem going on?:D
-
Re: Fast and Easy Checkout for Zen Cart
I just installed FEC but I'm finding that the login page has not changed. After clicking the "go to checkout" button I'm still directed to the standard Zen Cart login page with "Welcome, Please Sign In" at the top.
I followed the instructions completely, and after following them I went to the Fast and Easy Checkout Configuration menu in the Zen Cart admin and changed the One Page Checkout option to true. Is there anything else I need to do to activate the mod?
Sorry, I know this seems like a bone-headed issue, but I'm stumped. I'm a professional web developer so I'm pretty sure I executed the install correctly.
-
Re: Fast and Easy Checkout for Zen Cart
I have fec installed, and it seems that if you dont click 'estimate shipping' and go straight to the one page checkout page then the shipping is not calculated : just says either - (shipping to ) 0.00 or (shipping cannot be calculated at this time) 0.00
Anyone got any ideas?
-
Re: Fast and Easy Checkout for Zen Cart
Just to elaborate...
If you put something in your basket, then head over to checkout and then goto create a new account. Once done, and your on the 1 page checkout. The shipping cost in the top section is wrong as it cant work it out, but further down the page the shipping is correct. But once you complete the order the shipping is wrong on the order.
-
Re: Fast and Easy Checkout for Zen Cart
Found the issue i had, somehow i had overwritten the create account file in the module folder, so put back in:
// FEC MODIFICATION
$_SESSION['sendto'] = $_SESSION['customer_default_address_id'] = (int)$address_id;
All good now.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
jack7890
I just installed FEC but I'm finding that the login page has not changed. After clicking the "go to checkout" button I'm still directed to the standard Zen Cart login page with "Welcome, Please Sign In" at the top.
I followed the instructions completely, and after following them I went to the Fast and Easy Checkout Configuration menu in the Zen Cart admin and changed the One Page Checkout option to true. Is there anything else I need to do to activate the mod?
Sorry, I know this seems like a bone-headed issue, but I'm stumped. I'm a professional web developer so I'm pretty sure I executed the install correctly.
If you want to change your login page, you'll need a different module such as Easy Sign-Up and Login.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
fright-rags
I have the Fast and Easy Checkout mod installed and it's been giving me problems when customers try to create an account. Basically, they will place orders without setting up an account, but when they try to create an account later on, they cannot use the same email address. So, I need to delete all their customer info from the admin before they set one up. Isn't there a way to fix this?
Quote:
Originally Posted by
yellow1912
You probably missed some edits. It's the best to go back to the installation file, re-read and check everything. Also, visit the author site to see if there is any new version.
In future versions I plan to simply integrate ESL and FEC completely to avoid issues of people confusing the two modules. Again, FEC CURRENTLY has nothing to do with registration or COWOA (Checkout without an account). ESL has a COWOA feature which is pre-integrated with FEC and requires no additional edits.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Jerry5763837
hello, everyone,
can you pleas help me?
i installed this mod today, but some error occured.
after FTP all files to my server, when open my admin in browser, warning occoured:(i did not install Easy Sign-Up and Login mod )
Warning: Cannot modify header information - headers already sent by (output started at ..\admin\includes\languages\english\extra_definitions\fec.php:1) in ..\admin\includes\init_includes\init_templates.php on line 36
what probably is the problem going on?:D
anybody know how to fix this problem?
:clap:thanks.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Jerry5763837
anybody know how to fix this problem?
:clap:thanks.
Delete the file or rename to -bak. It isn't important anyways.
-
Re: Fast and Easy Checkout for Zen Cart
hi, numinix,
Many thanks for your quick reply.
after delete fec.php, it seems okay for admin.
but when paste & run SQL in the admi---tool----run sql.
error occured as follows:
ERROR: Cannot insert configuration_key "" because it already exists
Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.
any further suggestion?
many appreciated.:frusty:
-
Re: Fast and Easy Checkout for Zen Cart
hi, numinix
seems that now i fixed it and install succesfully.
thanks for your great mod.
however, when click the buttom "go to check out" on shopping_cart page, it has no response.
Any suggestion about this issue?:cool:
-
Re: Fast and Easy Checkout for Zen Cart
hi,numinix
Maybe this problem was resulted from Ultimate SEO mod?
i am using this SEO mod.
-
Re: Fast and Easy Checkout for Zen Cart
Hi All,
I've been using this mod for a while but only recently considered it as a Bailed Cart symptom.
I've spent the last couple of days looking for reasons as to why I'm getting bailed carts and having changed as much of my site as possible (added as many payment modules as I can, minimised escape routes, maximised site security, etc., etc.,) I looked again at the checkout page.
I feel that the page order is not quite right and I'm wondering if this has been brought up here before? I'd like to rearrange the order in which the page elements appear so that they are more logical and the most important things are displayed first:
http://www.limelites.co.uk/screen69.jpg
It makes sense to me if the first thing the customer sees is payment methods and shipping choices rather than discount coupons and gift certificates.
The order that seems most logical to me is:
- Shopping Cart Contents
- Payment Method
- Shipping Method
- Billing and Shipping Address (together in one table)
- Special Instructions
- Gift Certificate and Discount Coupons.
So now for the golden question, where would I begin.... what file controls the order these elements are displayed in?
-
Re: Fast and Easy Checkout for Zen Cart
The opening post in this thread mentions how to customise the way I want, but when I try moving the elements in tpl_checkout_default.php it has no effect on my page... Am I missing something?
-
Re: Fast and Easy Checkout for Zen Cart
hi, imelites,
you are editing wrong files.
the correct should be tpl_checkout_stacked.php
Another question, do you have the problem same mine?
that is, when click the buttom "go to check out" on shopping_cart page, it has no response:lamo:
-
Re: Fast and Easy Checkout for Zen Cart
I thought I was editiing the wrong file, but was just going with the OP's opening instructions:
Quote:
Originally Posted by
numinix
[URL="http://www.numinix.com/index.php?main_page=document_general_info&cPath=160&products_id=760"]
TIPS:
=====
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.
To personalize the checkout, you can create your own CSS file and then edit the classes found within
includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_default.php
This file contains the layout of the page and can be re-organized by moving the fieldset blocks to however you want.
You may also want to redefine the TEXT and ERROR definitions found in checkout.php. Do NOT redefined the FILENAME definitions or the script will not work.
I had initially looked at tpl_checkout_stacked.php but that's some scary looking code.... will look again now :-)
I don't have that problem. My checkout button works a treat, always has. Sounds like you've somehow corrupted a file. Try uploading the original files that shipped with the mod once more, but watch for the MERGE on the shopping_cart_default.php file.... hopefully you didn't overwrite an existing file.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
limelites
I thought I was editiing the wrong file, but was just going with the OP's opening instructions:
I had initially looked at tpl_checkout_stacked.php but that's some scary looking code.... will look again now :-)
I don't have that problem. My checkout button works a treat, always has. Sounds like you've somehow corrupted a file. Try uploading the original files that shipped with the mod once more, but watch for the MERGE on the shopping_cart_default.php file.... hopefully you didn't overwrite an existing file.
hi, imelites,
what do you mean by saying "watch for the MERGE on the shopping_cart_default.php file"
what kind of cold should be added to shopping_cart_default.php?
As per the installation instruction of latest version 1.28, it does not mention how to add code to shopping_cart_default.php
Please advise.
many thanks.:lamo:
-
Re: Fast and Easy Checkout for Zen Cart
Ahhh, sorry about that, my mistake... I was thinking of another mod... Was working on about three things at the same time last night and it was getting late here.... Sorry, ignore what I said as it applied to Empty Cart Manager Mod which I'd been working on simultaneously.
I am using version 1-25 of FEC though.... which worked first time with no real issues. I can send you the files if required?
Has you button stopped working since you installed this mod? Are you certain that it's this mod install which affected the button?
If you switch to the default ZC template temporarily to check it, does the button re-activate?
-
Re: Fast and Easy Checkout for Zen Cart
-
Re: Fast and Easy Checkout for Zen Cart
Jerry, I noticed from your previous posts that you're not using Easy Sign-Up and Login v1.18b+?
Therefore, you should, perform the following extra step in includes/modules/YOUR_TEMPLATE/create_account.php:
Find:
$address_id = $db->Insert_ID();
Add After:
// FEC MODIFICATION
$_SESSION['sendto'] = $_SESSION['customer_default_address_id'] = (int)$address_id;
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
limelites
Jerry, I noticed from your previous posts that you're not using Easy Sign-Up and Login v1.18b+?
Therefore, you should, perform the following extra step in includes/modules/YOUR_TEMPLATE/create_account.php:
Find:
$address_id = $db->Insert_ID();
Add After:
// FEC MODIFICATION
$_SESSION['sendto'] = $_SESSION['customer_default_address_id'] = (int)$address_id;
hi,limelites,
Thanks for your reminding.
yes, i did add the above code to create_account.php
i installed the version 1.28 available at http://www.numinix.com/forum/viewtopic.php?t=4
when click the button "go to checkout" in shopiing_cart page, it does not response, it always loading.
anybody know what is the problem?
-
Re: Fast and Easy Checkout for Zen Cart
when you switch to your classic template, is the button doing the same thing?
Gimme a URL to your site and I'll look at your source code to see if there's anything obvious to me.
What's it say in status bar when you hover over button or what's the properties when you right click properties?
-
Re: Fast and Easy Checkout for Zen Cart
hi, limelites,
Many thanks for your quick answer.
when hover on it, it shows www.topalways.com/checkout/
after clicking, it always loading. and in the IE bar, it have no
change, always shows www.topalways.com/shopping_cart/
any further question?:unsure:
P.S. i thought it has something with my Ultmate SEO mod? what do you think of this?
-
Re: Fast and Easy Checkout for Zen Cart
I added something to my cart, created account and clicked on checkout but was shown this page:
http://www.limelites.co.uk/screen70.jpg
1. Try switching to classic template and then testing your button... this will help eliminate core files.
2. You should uninstall the SEO mod and test again. I've read bad things about SEO static URL mods and it could well be the culprit.
To find out what's happened though, try above first.
-
Re: Fast and Easy Checkout for Zen Cart
I've gotten to step 3 in your checkout process (final stage) and have not been able to replicate the broken button...
Which button is it exactly and on which page of the checkout process?
-
Re: Fast and Easy Checkout for Zen Cart
It's very odd as I can go to your shopping_cart page and click on the "go to checkout" button with no problems at all.
I've had a thorough browse through your checkout and shopping cart pages, clicking on your buttons seems to work perfectly from here.
It's odd if it's not working for you... Try clearing your cache history, closing all your browsers etc., etc.,.... and try again....
Really nice site by the way!
-
Re: Fast and Easy Checkout for Zen Cart
PM From Jerry5763837 I'm posting this message on the forum so others may follow it :-)
Quote:
Originally Posted by
Jerry5763837
hi,limelites
May i ask is that ***** ***** registered at ******.com??
Sorry, when you are testing my site, i turned of FEC.
so you can go to 3 steps without any problem.
by the way, how to use the template "classic"??
many appreciated for your time.
Yes, it was me who registered to test your site. Never knew you had disabled FEC.. The fact it's working with FEC disabled sort of rules out the SEO mod.
Did you try a fresh FEC install?
To enable calssic template from admin, goto tools/template selection and enable Classic Contemporary Green template just to test it... then switch back :-)
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
limelites
PM From Jerry5763837 I'm posting this message on the forum so others may follow it :-)
Yes, it was me who registered to test your site. Never knew you had disabled FEC.. The fact it's working with FEC disabled sort of rules out the SEO mod.
Did you try a fresh FEC install?
To enable calssic template from admin, goto tools/template selection and enable Classic Contemporary Green template just to test it... then switch back :-)
No, the seo mod isn't ruled out. FEC doesn't work with rewritten URLs. Other mods like Simple SEO URLs and Magic SEO URLs have fixes to not rewrite the URLs for FEC. Ultimate SEO URLs does not. Speak to that author for a workaround.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
limelites
Hi All,
I've been using this mod for a while but only recently considered it as a Bailed Cart symptom.
I've spent the last couple of days looking for reasons as to why I'm getting bailed carts and having changed as much of my site as possible (added as many payment modules as I can, minimised escape routes, maximised site security, etc., etc.,) I looked again at the checkout page.
I feel that the page order is not quite right and I'm wondering if this has been brought up here before? I'd like to rearrange the order in which the page elements appear so that they are more logical and the most important things are displayed first:
http://www.limelites.co.uk/screen69.jpg
It makes sense to me if the first thing the customer sees is payment methods and shipping choices rather than discount coupons and gift certificates.
The order that seems most logical to me is:
- Shopping Cart Contents
- Payment Method
- Shipping Method
- Billing and Shipping Address (together in one table)
- Special Instructions
- Gift Certificate and Discount Coupons.
So now for the golden question, where would I begin.... what file controls the order these elements are displayed in?
organize the elements in the appropriate template file. FEC uses 3 different template files for the checkout page. One main file and then one of two files for the layout of elements. You would want to edit the template file that has the word "stacked".
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
organize the elements in the appropriate template file. FEC uses 3 different template files for the checkout page. One main file and then one of two files for the layout of elements. You would want to edit the template file that has the word "stacked".
I already edited it and I managed to move step 1 to the top and get the page laid out more logically. It's much better now although still not perfect :-)
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
numinix
No, the seo mod isn't ruled out. FEC doesn't work with rewritten URLs. Other mods like Simple SEO URLs and Magic SEO URLs have fixes to not rewrite the URLs for FEC. Ultimate SEO URLs does not. Speak to that author for a workaround.
Thanks for clarifying this. In that case it'd be best to simply uninstall the SEO MOD. Static URL's are no longer necessary anyway, Google and all other major search engines can handle and recognise dynamic URL's anyway :-)
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
chuckienorton
I'm having a problem with FEC: my installation of FEC made the checkout process STOP checking out the 'stock by attributes' module completely. So it doesn't reduce the stock.
Any clue what's happening? Thanks in advance.
I'm experiencing the original problem quoted here, which is allowing checkout without checking the product stock. The original quote by cropinstop indicates that the problem was found, but I don't see what the fix is. Anyone know? Please let me know. Thanks!
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
abko
I'm experiencing the original problem quoted here, which is allowing checkout without checking the product stock. The original quote by cropinstop indicates that the problem was found, but I don't see what the fix is. Anyone know? Please let me know. Thanks!
If you're using the 'stocks by attributes' mod with FEC then perhaps you're experiencing the same problem I did some time back. Take a look at my postings in the SBA thread here. I managed to sort my problem which sounds similar to yours. Hope it helps.
-
Re: Fast and Easy Checkout for Zen Cart
Hi Numinim,
Im trying to re-install this mod, however your forum is down so i cant get to any instructions? Any idea how long this will be down for??
Many thanks
Paul
-
Re: Fast and Easy Checkout for Zen Cart
There's installation instructions in the downloaded mod files called documentation.html
-
Re: Fast and Easy Checkout for Zen Cart
Hi, do you offer installation for the add-on, against a fee?
I have a custom template, which I think prevents the add-on to work...
Here's the link :
http://www.marcsebastien.com/shop1/i...ain_page=index
It's very frustrating because the split presentation is exactly what I'm looking for!!! :huh:
-
Re: Fast and Easy Checkout for Zen Cart
Hi,
Ive just downloaded and installed the latest version, which does have the documentation, thankyou.
However im still getting step 1 of the normal checkout proces come up? Do i need to manually change the link in the shopping cart to goto a different page? Im using Magic SEO which i think is causing the problems?
Many thanks
Paul.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
phil99
One issue, though - it seems to crash under the following conditions:
If the "ship to" country is not defined or listed as "skip" in the shipping module, pressing "Continue Checkout" (main_page=checkout) causes the crash. Same crash occurs if you try to select an unsupported country from the address book (main_page=checkout_shipping_address).
The crash shows up as "Internet Explorer cannot display the webpage" in IE and "Page Load Error - Redirect Loop - server is redirecting the request for this address in a way that will never complete" in Firefox.
Unmodified (stock) ZC will not proceed from checkout Step 1 to Step 2 until you change the shipping address to a country that is supported by at least one shipping module, but FEC just crashes.
Using latest FEC , ZC 1.3.7 with SSL enabled.
Any ideas?
Still got this bug. Any ideas?
-
Re: Fast and Easy Checkout for Zen Cart
I just upgraded to the latest version and added Easy Signup. Now the Order Confirmation Page show briefly before continuing on automatically. I have On Page Checkout turned on. Why is the Confirmation Page showing now when it did not before?
www.thecablestation.com
-
Re: Fast and Easy Checkout for Zen Cart
I'm still having the problem that no shipping method is selected by default, causing calculation errors on first load of checkout page.
FEC 1.29, ozpost (&AustPost) installed.
Is there a fix for this ?
-
Re: Fast and Easy Checkout for Zen Cart
[QUOTE=numinix;646736]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.
Did you ever found what is the problem with the gift wrap mod>? in stacked it just does nothing (even if you select items - it does not update price or show them in the confirmation page) and in split every time you select a product it refreshes the page and only update the first item. every item you try after a first one selected it just refresh the page and does nothing. If you click 2-3 items fast enough it will show them all. Another problems is that they don't stay marked so if someone click edit and go back to the checkout page they can't see which products they marked for gift wrap and even worse they can't undo it or add other items.
I went over both mods few times and can't figure out what is the problem> I also double checked to see if there are any changes needed to be made for the gift wrap mod and found none.
If you want to experience the bug you can try my store http://bestitalianleather.com
It is currently in stacked yet I'll be happy to change it for split so you could see the other problem - just PM a request.
I really want to solve this one.
Thanks,
Erez:frusty:
-
Re: Fast and Easy Checkout for Zen Cart
[QUOTE=erezw;722920]
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.
Did you ever found what is the problem with the gift wrap mod>? in stacked it just does nothing (even if you select items - it does not update price or show them in the confirmation page) and in split every time you select a product it refreshes the page and only update the first item. every item you try after a first one selected it just refresh the page and does nothing. If you click 2-3 items fast enough it will show them all. Another problems is that they don't stay marked so if someone click edit and go back to the checkout page they can't see which products they marked for gift wrap and even worse they can't undo it or add other items.
I went over both mods few times and can't figure out what is the problem> I also double checked to see if there are any changes needed to be made for the gift wrap mod and found none.
If you want to experience the bug you can try my store
http://bestitalianleather.com
It is currently in stacked yet I'll be happy to change it for split so you could see the other problem - just PM a request.
I really want to solve this one.
Thanks,
Erez:frusty:
OK. So the difference in behavior between split and stacked is just because in the checkout_split.php the following line has the onclick command.
echo zen_draw_checkbox_field($gift_id,'',false, 'id="'.$gift_id .'" onclick="updateForm()"');
any way I thought of a work around: delete the onclick and then add an "update cart" button below the gift wrap table. this works yet it still have few problems.
after you click update and the page refreshes the check boxes for the gift wrap are set to false again. which lead to other problems such as if someone changes their shipping options the page will refresh again with the gift wrap boxes in false erasing the gift wrap from the cart. second it may confuse the customer who will not be sure if his mark to wrap a product actually went through.
and of course all this applies if a customer goes back to edit any detail of his purchase.
any way, if someone can think of a way to store the customer decision it will be great as I don't have enough knowledge to do that.
would love to hear what you think.
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
DanTheMan
Hey Numinix, very useful contrib, thanks!
One issue, though - it seems to crash under the following conditions:
If the "ship to" country is not defined or listed as "skip" in the shipping module, pressing "Continue Checkout" (main_page=checkout) causes the crash. Same crash occurs if you try to select an unsupported country from the address book (main_page=checkout_shipping_address).
The crash shows up as "Internet Explorer cannot display the webpage" in IE and "Page Load Error - Redirect Loop - server is redirecting the request for this address in a way that will never complete" in Firefox. :oops:
Unmodified (stock) ZC will not proceed from checkout Step 1 to Step 2 until you change the shipping address to a country that is supported by at least one shipping module, but FEC just crashes.
Using FEC 1.16, ZC 1.3.8a with SSL enabled.
Any ideas?
Can i bump this problem, had it for 2 months now, and no nearer a solution.
-
Re: Fast and Easy Checkout for Zen Cart
I really want to get the above problem sorted....
I am using Ultimate SEO urls, and dont want to stop, as we are ranking number one for so many terms getting brilliant results there...
And I love fast and easy checkout, this is brillian too.... I want to use both, but need some kind of work around (if this is what is the problem)
The problem only occurs when shipping to certain countries, and seems fine with all UK ones... but we are losing customers.
Please help me!
-
Re: Fast and Easy Checkout for Zen Cart
I think the mod needs an addition.
As posted before this error happens when the ship to country is not defined. Normall zen cart would say, sorry we do not currently ship to this destination, but with FEC it throws this error.
I guess if you dont ship there it doesnt matter! but would look better not to have errors.
-
Re: Fast and Easy Checkout for Zen Cart
I cannot for the life of me figure out my alignment issues when using this mod. I have tried to figure it out using Fire Bug and other web developer tools for the stylesheet.css and checkout.css and have looked at tpl_checkout_stacked. I just cannot find what might be causing this. Any help or insight would be greatly appreciated.
http://teamjsales.net/screen.jpg
-
Re: Fast and Easy Checkout for Zen Cart
I am testing this on a local machine with 1.3.7 when I try to change the address and confirm the change I get an error from the browser saying:
Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked.
Cookies are not blocked and this worked fine before installing FEC. Has anyone else had this and how is it solved.
thanks
-
Re: Fast and Easy Checkout for Zen Cart
I have also noticed that I do not have any config options in the admin side yet I can see the config data and fields in the configuration tables.
I cannot get the group to show depsite having that data in the table too.
Any thoughts. I am wondering if these settings may cure my earlier problem.
Thanks
-
Re: Fast and Easy Checkout for Zen Cart
I am wanting to use FEC and ESL together on my site. I have the latest of each file package but my question is this... which do I install first? Which SQL files are used? So on and so forth...
I am not totally new to installing mods but these two seem to be troublesome according to what I have read so far.
I am using Zencart 1.3.8a, no SEO mods active and the few mods I have installed do not affect the same files as these two mods. Also I am installing on my home test site for safety reasons.
Thanks in advance,
~Dave
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Dellonious
I am wanting to use FEC and ESL together on my site. I have the latest of each file package but my question is this... which do I install first? Which SQL files are used? So on and so forth...
I am not totally new to installing mods but these two seem to be troublesome according to what I have read so far.
I am using Zencart 1.3.8a, no SEO mods active and the few mods I have installed do not affect the same files as these two mods. Also I am installing on my home test site for safety reasons.
Thanks in advance,
~Dave
Use v1.31 with ESL pre-integrated
-
Re: Fast and Easy Checkout for Zen Cart
Upgraded to 1.31 and got the following error when applying the SQL patch.
Code:
1062 Duplicate entry 'Permanent Account Holders Only' for key 2
in:
[INSERT INTO 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.
-
Re: Fast and Easy Checkout for Zen Cart
Okay I think I fixed the SQL issue.
Now I have a feature request for Numinix.
I would like to have "Same Address for Shipping/Billing" checkbox available on both the billing and shipping address pages.
The problem now is if the customer forgets to check the box on the billing page they have to reenter the information again on the shipping page. If they hit the back button to return to the billing page to check the box the information is erased and they have to start all over again.
BTW, the integration of this mod is very good!
-
Re: Fast and Easy Checkout for Zen Cart
Using the latest version of Zen Cart - fresh install. Just downloaded fresh version of Fast and Easy Checkout and installed.
When I'm at the billing page and enter the billing information and press the "Continue to Checkout" button, it doesn't advance to the next page and clears out everything I just entered.
Any ideas?
-
1 Attachment(s)
Re: Fast and Easy Checkout for Zen Cart
Firstly. Thank you for this mod. It is brilliant!
On my site no titles for example total, Shipping, Grand Total appear during checkout. How do I get them to show?
See screenshot.
-
Re: Fast and Easy Checkout for Zen Cart
Anybody?
When I'm at the billing page and enter the billing information and press the "Continue to Checkout" button, it doesn't advance to the next page and clears out everything I just entered.
-
Re: bug with credit card error
I think my problem might relate to this previously discussed credit card issue, it's been giving me a real headache.
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.
Using 1.38a with COWOA & FEC (v1.2.5)
I have two methods of payment - Paypal Express Checkout and Money Order. With 'Confirm Terms and Conditions during the checkout procedure' set to true,
When I reach my Checkout page after completing the money order (cheque) details I just have to tick the t&c box then the 'checkout' button and the purchase is complete - just what I want.
Link returns: ...index.php?main_page=checkout&action=null
When I return to my Checkout page after completing credit card details in Paypal it is as though the 'checkout' button has already been clicked with the 'select terms and conditions...' warning message displayed. To get past this I tick the t&c box then 'checkout' this then returns the checkout page as it should look (a refresh does the same thing) but I then have to 'tick and checkout' again. Neither way is satisfactory.
Link returns: index.php?main_page=checkout
I believe that this MAY be resolved by updating FEC, but with all the work I've done to cowoa and fec layout etc, I really just want to correct any potential bug, perhaps just update a file or two!
So difficult to explain this problem clearly but hope someone can shed some light.
Thanks
Simon
-
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
sitehatchery
Anybody?
When I'm at the billing page and enter the billing information and press the "Continue to Checkout" button, it doesn't advance to the next page and clears out everything I just entered.
I'm having a similar problem. All is fine unless the "Same Address for Shipping/Billing" box is checked. With the box checked, the page refreshes and the billing fields are blank.
If I leave the box un-checked, it moves along fine to the shipping page.
Fresh 1.3.8a and new FEC 1.31
-
fec_confirmation shows up for a moment then moves to checkout_sucess
On page "checkout" when the confirm your order button is clicked, it goes to fec_confirmation where there is another confirm your order button, but then after 3 or 4 seconds, it goes to the checkout_success page.
Shouldn't it display something like "processing your order..." instead of briefly showing a page with another confirm your order button while the order is being authorized?
In the FEC config there is a field called Checkout Confirmation Alternate Text. Seems like this is what should be showing up while the order is being authorized, not another confirm your order button.
What am I missing here?