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

Fast and Easy Checkout

Views: 550,819

Results 1,761 to 1,780 of 2,177
24 Feb 2014, 7:36 PM
#1761
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Fast and Easy Checkout

magz:

Hi bislewl - it's the page with everything including the "confirm order" button, but never mind that now... The FEC/CJL combo was nothing but trouble for me from the beginning (likely because of my lack of coding skills). When I discovered a total of 3 broken plugins (in addition to a slew of other problems), I finally gave up on it. Installed Integrated COWOA instead - less functionality but works like a charm "out of the box" and doesn't break anything else (as far as I can tell so far). I really wish FEC had been easier to implement, that one-page checkout would have been very nice.

Less functional?? because there's no "one-page" checkout or jQuery actions happening in COWOA???? That doesn't make COWOA "less functional".. just a DIFFERENT way of approaching the Zen Cart checkout process.. and BTW, the checkout PROCESS regardless of whether you use FEC or COWOA is the SAME..

  1. Collect billing and shipping data
  2. Select a shipping and payment method
  3. Confirm and submit the order
  4. Sale completion
24 Feb 2014, 7:52 PM
#1762
magz avatar

magz

Zen Follower

Join Date:
Apr 2013
Location:
north carolina
Posts:
110
Plugin Contributions:
0

Re: Fast and Easy Checkout

Sorry DivaVocals, I misspoke. You're absolutely right, the underlying functionality is about the same in both plugins. But what's experienced by the end user (buyer) is very different because of one-page checkout in one vs. multi-page checkout in the other. I do love the graphic representation of the progress in COWOA, though - a very nice touch. ~m

DivaVocals:

Less functional?? because there's no "one-page" checkout or jQuery actions happening in COWOA???? That doesn't make COWOA "less functional".. just a DIFFERENT way of approaching the Zen Cart checkout process.. and BTW, the checkout PROCESS regardless of whether you use FEC or COWOA is the SAME..

  1. Collect billing and shipping data
  1. Select a shipping and payment method
  1. Confirm and submit the order
  1. Sale completion
26 Feb 2014, 5:37 PM
#1763
danielle avatar

danielle

Totally Zenned

Join Date:
Oct 2004
Posts:
973
Plugin Contributions:
0

Re: Fast and Easy Checkout

I have version 1.14.3 of FEC installed on a 1.5.1 store. I noticed that when creating an account or doing guest checkout, if the billing state field is left blank or unselected, an error message displays. If the shipping state field is left blank or unselected, no error message displays. We do need customers to fill in the shipping state if they've selected to use a different shipping address.

I looked at a 1.3.9h site using an older version of FEC, and it has the exact same issue.

Has anyone else experienced this, and were you able to fix it?

In includes/templates/YOUR_TEMPLATE/jscript/jquery/jquery_form_check.php, there is this line of code:

<?php if (ACCOUNT_STATE == 'true') echo '  if (!jQuery(\'[name="state_shipping"]\').attr("disabled") == "disabled" && jQuery(\'[name="zone_id_shipping"]\').val() == "") check_input("state_shipping", ' . ENTRY_STATE_MIN_LENGTH . ', "' . addslashes(ENTRY_STATE_ERROR) . '")' . "\n" . '  else if (jQuery(\'[name="state_shipping"]\').attr("disabled") == "disabled") check_select("zone_id_shipping", "", "' . addslashes(ENTRY_STATE_ERROR_SELECT) . '");' . "\n"; ?>

That seems like it should make the error appear if the shipping state is not selected, but it does not work. I am not familiar enough with js to know what is wrong with the code.

1 Mar 2014, 2:52 AM
#1764
jasonshanks avatar

jasonshanks

Zen Follower

Join Date:
Feb 2009
Location:
atlanta GA
Posts:
296
Plugin Contributions:
0

Re: Fast and Easy Checkout

I installed the fast and easy checkout module on zen cart 1.3.8 a . I did everything in the install doc except add the optional. But when i try to test the module out all the some of the text is bunched up and some of the input fields seem to be clipped .

[IMG]http://imagizer.imageshack.us/v2/xq90/839/duz2.jpg[/IMG]

Please help me fix this.

1 Mar 2014, 4:20 AM
#1765
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Fast and Easy Checkout

First thing I would do first is remove the left and right sideboxes on checkout, it really helps the layout AND increase conversions

1 Mar 2014, 4:54 AM
#1766
jasonshanks avatar

jasonshanks

Zen Follower

Join Date:
Feb 2009
Location:
atlanta GA
Posts:
296
Plugin Contributions:
0

Re: Fast and Easy Checkout

alright , reading up on how to remove the boxes from checkout now. Thank you so much for helping me.

1 Mar 2014, 5:55 AM
#1767
tom97zr2 avatar

tom97zr2

New Zenner

Join Date:
Jan 2014
Location:
United States
Posts:
28
Plugin Contributions:
0

Re: Fast and Easy Checkout

I did this new FEC update, thank you, but I don't like how you can't view the my account page and then the order history details page after completing the checkout, in case the customer wants to see this info, so I just removed the two new .no_account files so you can view those pages like before.

I also installed the Add Shipping Telephone number mod and added code to 2 of the FEC files so the customers phone number will show under the addresses on the checkout page, I think this is important so the customer can confirm their address and phone number before submitting the order, especially when using the one page checkout.

After installing the mod (carefully read the readme file first and manually merge code into your files), use this:


FEC files mods. This will add the phone number to the bottom of the addresses shown on the checkout page



    1. FEC file /includes/modules/quick_checkout.php

Find around line 440:
'entry_country_id' => $country);

Replace with:
'entry_country_id' => $country,
'entry_telephone' => $telephone);

Find around line 489:
array('fieldName'=>'entry_country_id', 'value'=>$country_shipping, 'type'=>'integer')

replace with:
array('fieldName'=>'entry_country_id', 'value'=>$country_shipping, 'type'=>'integer'),
array('fieldName'=>'entry_telephone', 'value'=>$telephone, 'type'=>'string')


    1. FEC file includes/modules/fec_create_account.php *

Add to the end of line 489
'entry_telephone' => $telephone,


Also in that mod in the readme file, there is one error, a missing }
Make sure to use this code below:


    1. includes/modules/pages/address_book_process/header_php.php *

Add line 60
$telephone = zen_db_prepare_input(zen_sanitize_string($_POST['telephone']));

Add line 97
if (strlen($telephone) < ENTRY_TELEPHONE_MIN_LENGTH) {
$error = true;
$messageStack->add('addressbook', ENTRY_TELEPHONE_ERROR);
}

Add line 175
array('fieldName'=>'entry_telephone', 'value'=>$telephone, 'type'=>'string'),
Add to end of line 256 what is in the [ ]'s but DO NOT INCLUDE [ ]
$entry_query = "SELECT entry_gender, entry_company, entry_firstname, entry_lastname, [entry_telephone,]

1 Mar 2014, 8:12 AM
#1769
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Fast and Easy Checkout

jasonshanks:

tried this here

http://www.zen-cart.com/showthread.php?166440-Turn-off-side-boxes-in-checkout
But i still can't remove the sideboxes. Its gotta be something i am missing

If you followed the suggestions in that post it WILL work.. so if it isn't it means you have not made the correct changes.. So double check your changes and if that still doesn't work it would help if you provided details of what changes YOU made and what files YOU edited..

1 Mar 2014, 9:23 AM
#1770
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: Fast and Easy Checkout

DivaVocals:

If you followed the suggestions in that post it WILL work.. so if it isn't it means you have not made the correct changes.. So double check your changes and if that still doesn't work it would help if you provided details of what changes YOU made and what files YOU edited..

In the readme it is also explained how to remove the side-boxes.

5 Mar 2014, 11:28 PM
#1771
crixus avatar

crixus

New Zenner

Join Date:
Oct 2013
Location:
United States
Posts:
88
Plugin Contributions:
0

Re: Fast and Easy Checkout

after install Fast and Easy Checkout everything works fine but.... i can't see (save change) button on
Google Merchant Center Feeder Configuration (under Configuration).

I can't update my save change please somebody help me :(

5 Mar 2014, 11:41 PM
#1772
linuxguy2 avatar

linuxguy2

Zen Follower

Join Date:
Sep 2013
Location:
Texas
Posts:
315
Plugin Contributions:
0

Re: Fast and Easy Checkout

jasonshanks:

I installed the fast and easy checkout module on zen cart 1.3.8 a . I did everything in the install doc except add the optional. But when i try to test the module out all the some of the text is bunched up and some of the input fields seem to be clipped .

Please help me fix this.

Something in you CSS files(s) isn't working properly or not installed.
Or you may need to widen the template a bit.
Do all you other pages display OK?

6 Mar 2014, 2:27 AM
#1773
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Fast and Easy Checkout

If it's the Numinix Tabbed Configuration, then there should be a red button at the bottom to save

10 Mar 2014, 12:02 AM
#1774
jasonshanks avatar

jasonshanks

Zen Follower

Join Date:
Feb 2009
Location:
atlanta GA
Posts:
296
Plugin Contributions:
0

Re: Fast and Easy Checkout

I want to apologize for being so stupid. I walked away from the site and came back a few days. Followed the instructions and it works just fine. I guess i got frustrated and couldn't see the forest for the trees.

10 Mar 2014, 6:13 PM
#1775
pascal020 avatar

pascal020

New Zenner

Join Date:
Aug 2009
Posts:
43
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hi,

I have a download shop and only need Company name (optional), first and last name and the email adress.

Is this easy to configure?

10 Mar 2014, 6:49 PM
#1776
crixus avatar

crixus

New Zenner

Join Date:
Oct 2013
Location:
United States
Posts:
88
Plugin Contributions:
0

Re: Fast and Easy Checkout

linuxguy2:

Something in you CSS files(s) isn't working properly or not installed.
Or you may need to widen the template a bit.
Do all you other pages display OK?

yes.....all you other pages display OK

have another problem sir please help me..........................

when i click on (checkout) index.php?main_page=checkout&fecaction=null

how can i remove &fecaction=null?

if i change modules/pages/checkout/header_php.php ( line 159)

 if ( !$_SESSION['shipping'] || ( $_SESSION['shipping'] && ($_SESSION['shipping'] == false) && (zen_count_shipping_modules() > 1) ) ) 
 $_SESSION['shipping'] = $shipping_modules->cheapest();

to

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'));
   }

/index.php?main_page=checkout But i got a blank page...

Please help me

11 Mar 2014, 4:23 PM
#1777
picandnix avatar

picandnix

Totally Zenned

Join Date:
Dec 2010
Location:
UK
Posts:
1,780
Plugin Contributions:
2

Re: Fast and Easy Checkout

pascal020:

Hi,

I have a download shop and only need Company name (optional), first and last name and the email adress.

Is this easy to configure?

You need this mod http://www.zen-cart.com/downloads.php?do=file&id=1465

12 Mar 2014, 1:10 PM
#1778
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Fast and Easy Checkout

Is there any place where the configuration options for FEC are explained? The reason I asked is that I have customer who used the COWA part of this and now wants to create an account. He is getting "duplicate email" errors and I am trying to find a way to solve this. It is not the first time this has happened. Several of my customers now wish they could convert the COWA to a true account.

I did a search on this thread for "Configuration" but only found references to a single setting. The readme file does not address the settings at all.

Thanks
Chris

12 Mar 2014, 1:28 PM
#1779
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Fast and Easy Checkout

Turning on Combine Accounts should fix the issue

12 Mar 2014, 1:38 PM
#1780
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Fast and Easy Checkout

bislewl:

Turning on Combine Accounts should fix the issue

Thanks!