Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Andy-C27
Is this version of FEC compatible with responsive templates please
Short answer - If you are using the latest version, yes.
Long answer - When installing the FEC make sure that you merger and not just replace the files. It all depends on which responsive template you are using. I am using carlisle refresh and some of the files are not in the location the upload wants to put the replacement file. The way I did the installation of FEC was to do a website backup & then search the backup for the file to be changed. Then a MUST do a merger of the two files (probably telling you something you already know) merge the FEC file into your website file.
More help? just ask :smile:
Re: Fast and Easy Checkout for Zen Cart
thanks ... I was just wondering as you can buy the responsive fec ,but I suppose that means it's more responsive than the the free 1
Re: Fast and Easy Checkout for Zen Cart
ZC 1.5.3 / FEC 1.15.3
If a postal code is incorrect, FedEx gives the error message:
Code:
Error in processing transaction.
WARNING: There are no valid services available
But does not force warehouse pickup to be selected as the shipping option. If the customer does not select warehouse pickup, FEC is allowing the customer to checkout without any shipping option chosen.
I need to specify that warehouse pickup is chosen if no other method is available, as well as require that a shipping method is chosen before allowing the customer to go to the confirmation page.
Can anyone assist me with this?
Re: Fast and Easy Checkout for Zen Cart
FEC is what it indicates quick checkout, eliminates about 2 pages has nothing to do with the Shipping Mod. What you set up in the Shipping mod is what FEC or FEAC (my preference) will display as options for the customer.
You can offer UPS,USPS, FedEx, Flat Rate, ZipCode Zone, Will Call being controlled by zipcodes. I use for example all with Flat Rate set at $6.95 but if one of the other shippers price is actually less, then no matter who the shipper is the shipping cost that is displayed will show no lower than the Flat Rate price.... none of which has to do with FEC.
Quote:
Originally Posted by
abcisme
ZC 1.5.3 / FEC 1.15.3
If a postal code is incorrect, FedEx gives the error message:
Code:
Error in processing transaction.
WARNING: There are no valid services available
But does not force warehouse pickup to be selected as the shipping option. If the customer does not select warehouse pickup, FEC is allowing the customer to checkout without any shipping option chosen.
I need to specify that warehouse pickup is chosen if no other method is available, as well as require that a shipping method is chosen before allowing the customer to go to the confirmation page.
Can anyone assist me with this?
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
EZorb
FEC is what it indicates quick checkout, eliminates about 2 pages has nothing to do with the Shipping Mod. What you set up in the Shipping mod is what FEC or FEAC (my preference) will display as options for the customer.
You can offer UPS,USPS, FedEx, Flat Rate, ZipCode Zone, Will Call being controlled by zipcodes. I use for example all with Flat Rate set at $6.95 but if one of the other shippers price is actually less, then no matter who the shipper is the shipping cost that is displayed will show no lower than the Flat Rate price.... none of which has to do with FEC.
Let me simplify my issue. If there's no shipping method selected, FEC still allows the customer to go to the order confirmation page without selecting a shipping method. This should not be the case. If there is no shipping method selected, it should give an error saying that they need to select a shipping method. I need to know how to make sure that customers cannot proceed to the confirmation page without first selecting a shipping method.
Re: Fast and Easy Checkout for Zen Cart
It's been a few years since I have used FEC. I use FEAC and this is not a issue. I may be wrong but I believe if you turn off FEC you will find same thing happens. The shopping cart will default on least expensive method of shipping but if you don't have any shipping method install or turn on I don't know what it would do. Go to Numinix web site and ask that question since they wrote the mod. There may be a newer ver. there.
Re: Fast and Easy Checkout for Zen Cart
After digging, I found an answer.
https://www.zen-cart.com/showthread....11#post1036811
Quote:
I'm confused because when I look at the cheapest_method function, it explicitly checks for storepickup and will not use that as the cheapest rate. However, I think this is a bug because if storepickup is the ONLY rate, it still will not get selected as the cheapest. This causes issues with mods like FEC.
Here is my fix.
Change line 172 to:
PHP Code:
if (($rates[$i]['cost'] < $cheapest['cost'] and $rates[$i]['module'] != 'storepickup') || $size == 1) {
and line 176 to:
PHP Code:
if ($rates[$i]['module'] != 'storepickup' || $size == 1) {
Re: Fast and Easy Checkout for Zen Cart
Hi
I would like to install thus but there is no install.sql in the zip file. There are loads of previous sql updates but I don't know which one to use.
I am using v1.5.1 - any help would be appreciated.
Thanks
Alan
Re: Fast and Easy Checkout for Zen Cart
Will this plugin work without the css/js loader? When I install css/js loader it messes up the css on my site.
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
DigiBooks
Hi
I would like to install thus but there is no install.sql in the zip file. There are loads of previous sql updates but I don't know which one to use.
I am using v1.5.1 - any help would be appreciated.
Thanks
Alan
You can find the SQL in the your_admin/includes/installers/fec folder. It automatically loads. You don't have to manually run it. Just install the module and it will run the SQL if needed.