Zen Cart Logo
Forums / All Other Contributions/Addons / Fast and Easy Checkout

Fast and Easy Checkout

Views: 550,807

Results 301 to 320 of 2,177
5 Nov 2008, 2:26 PM
#301
mvstudio avatar

mvstudio

Zen Follower

Join Date:
Apr 2008
Posts:
447
Plugin Contributions:
1

Fast and Easy Checkout

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!

6 Nov 2008, 7:11 AM
#302
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

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.

6 Nov 2008, 7:20 AM
#303
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Fast and Easy Checkout

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.
^_^

6 Nov 2008, 7:30 AM
#304
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Fast and Easy Checkout

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.

6 Nov 2008, 3:59 PM
#305
phineas77 avatar

phineas77

New Zenner

Join Date:
Nov 2008
Posts:
14
Plugin Contributions:
0

Re: Fast and Easy Checkout

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.

6 Nov 2008, 6:58 PM
#306
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

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.

6 Nov 2008, 8:38 PM
#307
ryk avatar

ryk

Totally Zenned

Join Date:
Oct 2004
Location:
Southport, UK
Posts:
3,644
Plugin Contributions:
6

Re: Fast and Easy Checkout

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

6 Nov 2008, 9:05 PM
#308
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

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...

6 Nov 2008, 9:15 PM
#309
ryk avatar

ryk

Totally Zenned

Join Date:
Oct 2004
Location:
Southport, UK
Posts:
3,644
Plugin Contributions:
6

Re: Fast and Easy Checkout

I'm not worried about previous versions - the problem still seems to exist in 1.23

6 Nov 2008, 10:09 PM
#310
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

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:

if ($_SESSION['sendto'] != false) {
  $_SESSION['shipping'] = $shipping_modules->cheapest(); 
  zen_redirect(zen_href_link(FILENAME_CHECKOUT, '', 'SSL'));
}

to:

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?

6 Nov 2008, 10:18 PM
#311
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

Nevermind, in 1.23 the code shows up as:

 
  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.

8 Nov 2008, 8:47 PM
#312
belaze avatar

belaze

New Zenner

Join Date:
Dec 2006
Posts:
84
Plugin Contributions:
0

Re: Fast and Easy Checkout

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.

9 Nov 2008, 7:53 PM
#313
il_pupo avatar

il_pupo

New Zenner

Join Date:
Nov 2008
Location:
Italy
Posts:
22
Plugin Contributions:
0

Re: Fast and Easy Checkout

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

10 Nov 2008, 4:43 PM
#314
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

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

?>
<script ...>

Add Before

if (FEC_ONE_PAGE == 'true') {

Find

</script>

Add After

 
<?php
  }
?>
  1. 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.

10 Nov 2008, 4:57 PM
#315
il_pupo avatar

il_pupo

New Zenner

Join Date:
Nov 2008
Location:
Italy
Posts:
22
Plugin Contributions:
0

Re: Fast and Easy Checkout

Nothing for me?:no:

10 Nov 2008, 6:32 PM
#316
phineas77 avatar

phineas77

New Zenner

Join Date:
Nov 2008
Posts:
14
Plugin Contributions:
0

Re: Fast and Easy Checkout

Numinix,

I'm getting a 404 on any link to your site and can't download the newest version. FYI

10 Nov 2008, 6:40 PM
#317
zilla avatar

zilla

New Zenner

Join Date:
Feb 2006
Location:
Bexhill, UK
Posts:
45
Plugin Contributions:
0

Re: Fast and Easy Checkout

numinix:

In 1.23 if you change:

if ($_SESSION['sendto'] != false) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, '', 'SSL'));
}

>  
> to:
>  
> ```php
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?

10 Nov 2008, 7:16 PM
#318
phineas77 avatar

phineas77

New Zenner

Join Date:
Nov 2008
Posts:
14
Plugin Contributions:
0

Re: Fast and Easy Checkout

numinix:

Nevermind, in 1.23 the code shows up as:

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.
10 Nov 2008, 8:39 PM
#319
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

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

10 Nov 2008, 9:17 PM
#320
zilla avatar

zilla

New Zenner

Join Date:
Feb 2006
Location:
Bexhill, UK
Posts:
45
Plugin Contributions:
0

Re: Fast and Easy Checkout

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