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

Fast and Easy Checkout

Views: 550,920

Results 1,381 to 1,400 of 2,177
11 Jul 2012, 3:22 PM
#1381
jroberto avatar

jroberto

New Zenner

Join Date:
Jun 2012
Posts:
17
Plugin Contributions:
0

Fast and Easy Checkout

picandnix:

Does it go any further than the 'your order is being processed' or does it just hang there? Do you get confirmation email of purchase?

Exactly my problem... Just hangs there...no confirmation e-mail

11 Jul 2012, 7:38 PM
#1382
picandnix avatar

picandnix

Totally Zenned

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

Re: Fast and Easy Checkout

JRoberto:

Exactly my problem... Just hangs there...no confirmation e-mail

I'm hoping you answer this question with an 'oh no I didn't...' but did you install CJ Loader when you installed FEC?

11 Jul 2012, 8:32 PM
#1383
jroberto avatar

jroberto

New Zenner

Join Date:
Jun 2012
Posts:
17
Plugin Contributions:
0

Re: Fast and Easy Checkout

No i didnt... do I have to download that else where?

11 Jul 2012, 9:12 PM
#1384
picandnix avatar

picandnix

Totally Zenned

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

Re: Fast and Easy Checkout

JRoberto:

No i didnt... do I have to download that else where?

Off top of my head I think there's a link to it in the FEC install docs. But if you can't find it then here are the individual files https://github.com/yellow1912/cjloader I'm sure I simply downloaded it as a fully packaged zip though rather than copying and pasting each file.

Quick edit, just spotted it, left hand side of page near top 'zip' :smartalec:

11 Jul 2012, 9:16 PM
#1385
picandnix avatar

picandnix

Totally Zenned

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

Re: Fast and Easy Checkout

once installed that should fix ya up. It's a few new files and one file to merge if my memory serves me well, header.php or something.

11 Jul 2012, 10:42 PM
#1386
jroberto avatar

jroberto

New Zenner

Join Date:
Jun 2012
Posts:
17
Plugin Contributions:
0

Re: Fast and Easy Checkout

Thank you, I will install and let you know! Thank you for the help once again!

25 Jul 2012, 9:44 PM
#1387
lindsey80 avatar

lindsey80

New Zenner

Join Date:
Apr 2010
Location:
Essex, UK
Posts:
77
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hi I wonder if someone could help me... I have added an additional field on my checkout page using this http://www.zen-cart.com/showthread.php?45080-Adding-Field-to-Checkout. I have the field showing on the form but when I go to submit the order it comes up with the processing, then goes to WARNING: An Error occurred, please refresh the page and try again. Now I have altered the tpl_checkout_stacked.php and put the original file back on to see if it is this causing the problem and its still the same. I have also altered includes/classes/order.php and put the original back which fixed the problem. can anyone see from the below code what could be causing the issue. Obviously I know that the line numbers are slightly out.
*
Next, alter the order.php class file, found in includes/classes/order.php
There are a fair number of bits to add, but bare with me:

Line 43, add order_frequent_code, to the sql statement.

Line 114, before 'ip_address' insert the following line:
'frequent_code' => $order->fields['order_frequent_code'],

Line 343, before 'ip_address' insert the following line:
'frequent_code' => $_SESSION['frequent_code'],

Line 587, before 'ip_address', insert the following line:
'order_frequent_code' => $this->info['frequent_code'],

Ok, nearly there. So far, we've added the field to the template, added the column to the database, and editted the order class to record the value. We now need to get the input and pass it to the order class.
*

the only other file I have edited is includes/modules/pages/checkout_shipping/header_php.php
*
After line 116 add:
if (isset($_SESSION['frequent_code'])) {
$frequent_code = $_SESSION['frequent_code'];
}
After line 124, which starts $comments = $_SESS........ add

if (zen_not_null($_POST['frequent_code'])) {
$_SESSION['frequent_code'] = zen_db_prepare_input($_POST['frequent_code']);
}
$frequent_code = $_SESSION['frequent_code'];*

Would really appreciate some help as I think this is more a FEC issue. I am a complete noob to this type of coding!

Many thanks

26 Jul 2012, 3:05 PM
#1388
lindsey80 avatar

lindsey80

New Zenner

Join Date:
Apr 2010
Location:
Essex, UK
Posts:
77
Plugin Contributions:
0

Re: Fast and Easy Checkout

lindsey80:

Hi I wonder if someone could help me... I have added an additional field on my checkout page using this http://www.zen-cart.com/showthread.php?45080-Adding-Field-to-Checkout. I have the field showing on the form but when I go to submit the order it comes up with the processing, then goes to WARNING: An Error occurred, please refresh the page and try again. Now I have altered the tpl_checkout_stacked.php and put the original file back on to see if it is this causing the problem and its still the same. I have also altered includes/classes/order.php and put the original back which fixed the problem. can anyone see from the below code what could be causing the issue. Obviously I know that the line numbers are slightly out.
*
Next, alter the order.php class file, found in includes/classes/order.php
There are a fair number of bits to add, but bare with me:

Line 43, add order_frequent_code, to the sql statement.

Line 114, before 'ip_address' insert the following line:
'frequent_code' => $order->fields['order_frequent_code'],

Line 343, before 'ip_address' insert the following line:
'frequent_code' => $_SESSION['frequent_code'],

Line 587, before 'ip_address', insert the following line:
'order_frequent_code' => $this->info['frequent_code'],

Ok, nearly there. So far, we've added the field to the template, added the column to the database, and editted the order class to record the value. We now need to get the input and pass it to the order class.
*

the only other file I have edited is includes/modules/pages/checkout_shipping/header_php.php
*
After line 116 add:
if (isset($_SESSION['frequent_code'])) {
$frequent_code = $_SESSION['frequent_code'];
}
After line 124, which starts $comments = $_SESS........ add

if (zen_not_null($_POST['frequent_code'])) {
$_SESSION['frequent_code'] = zen_db_prepare_input($_POST['frequent_code']);
}
$frequent_code = $_SESSION['frequent_code'];*

Would really appreciate some help as I think this is more a FEC issue. I am a complete noob to this type of coding!

Many thanks

Found out the problem.. The tablel created has an incorrect letter in! Simples

28 Jul 2012, 9:53 AM
#1389
lindsey80 avatar

lindsey80

New Zenner

Join Date:
Apr 2010
Location:
Essex, UK
Posts:
77
Plugin Contributions:
0

Re: Fast and Easy Checkout

Please, please, please can someone who knows what they are doing help me?!

I am trying to make the box field and the gift-message field on this addon **required, **please can someone help. This is the most important part to the website as without entering their licence number they will be unable to buy the item. I have tried looking at other instructions and can't find a way to adapt it to what I want.

This is what I have showing in tpl_checkout_stacked.php

*<?php
}
if (FEC_GIFT_MESSAGE == 'true') {

?>

<fieldset class="shipping" id="ukara"> <legend><?php echo TABLE_HEADING_GIFT_MESSAGE; ?></legend> <html>UKARA Number <br /> </html> <?php echo zen_draw_textarea_field('gift-message', '45', '3', $_SESSION['gift-message']); ?>*

**and
**

  • <?php } if (FEC_CHECKBOX == 'true') { $checkbox = ($_SESSION['fec_checkbox'] == '1' ? true : false); ?> <legend><?php echo TABLE_HEADING_FEC_CHECKBOX; ?></legend> <label><?php echo TEXT_FEC_CHECKBOX; ?></label> <?php echo zen_draw_checkbox_field('fec_checkbox', '1', $checkbox, 'id="fec_checkbox"'); ?>*

Many thanks for you help in advance.

29 Jul 2012, 12:48 PM
#1390
lindsey80 avatar

lindsey80

New Zenner

Join Date:
Apr 2010
Location:
Essex, UK
Posts:
77
Plugin Contributions:
0

Re: Fast and Easy Checkout

bump, thank you

lindsey80:

Please, please, please can someone who knows what they are doing help me?!

I am trying to make the box field and the gift-message field on this addon **required, **please can someone help. This is the most important part to the website as without entering their licence number they will be unable to buy the item. I have tried looking at other instructions and can't find a way to adapt it to what I want.

This is what I have showing in tpl_checkout_stacked.php

*<?php
}
if (FEC_GIFT_MESSAGE == 'true') {

?>

<fieldset class="shipping" id="ukara"> <legend><?php echo TABLE_HEADING_GIFT_MESSAGE; ?></legend> <html>UKARA Number <br /> </html> <?php echo zen_draw_textarea_field('gift-message', '45', '3', $_SESSION['gift-message']); ?>*

**and
**

  • <?php } if (FEC_CHECKBOX == 'true') { $checkbox = ($_SESSION['fec_checkbox'] == '1' ? true : false); ?> <legend><?php echo TABLE_HEADING_FEC_CHECKBOX; ?></legend> <label><?php echo TEXT_FEC_CHECKBOX; ?></label> <?php echo zen_draw_checkbox_field('fec_checkbox', '1', $checkbox, 'id="fec_checkbox"'); ?>*

Many thanks for you help in advance.

8 Aug 2012, 4:57 AM
#1391
giftpackaging avatar

giftpackaging

New Zenner

Join Date:
May 2009
Posts:
22
Plugin Contributions:
0

Re: Fast and Easy Checkout

Can someone from Numinix reply to my issues sent through to your support team? It has been 2 MONTHS since we purchased from you and issues were meant to be looked into.

For those looking at paying for the Fast Easy Checkout, I would be wait first. We paid for 2 modules for a retail/wholesale site we have, it has now been a few months and we still have problems which haven't been resolved.

  • Discounct coupon area doesn't show up, customers have no place to enter coupon codes.
  • low stock reports emails received for every order we recieve, despite stock not being low. Plus these automated stock reports doesn't even show qty of stock, its blank.
  • if items qualify for free shipping threshold, then the checkout page TEXT becomes really large
  • for our wholesale site, where customers need to be authorised to have access, we can no longer authorise them as its been disabled. A fix was made but it has reverted back. Plus once customers are authorised, automated zencart welcome authorisation email is not sent. So customers are not even aware they have access.
19 Aug 2012, 7:37 PM
#1392
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: Fast and Easy Checkout

I am having trouble with completing my purchase. I am at the checkout page and if I check the button to check out with Paypal it then goes to the next page saying order is being processed and then it goes right back to the checkout page. If I check the button to pay with check or money order it works just fine and it completes my checkout.

I have had this installed for a long time now and I never noticed any problems with it. I did switch to a new template and I made sure that all the files were uploaded to the new template but I am at a loss of what is going on. I haven't seen anything in my cache folder for any bugs when I test it out.

I have the newest version of zen cart and my site is https://www.frompropertorocker.com

Any ideas?

Thanks!

20 Aug 2012, 1:37 PM
#1393
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: Fast and Easy Checkout

nolsowski:

I am having trouble with completing my purchase. I am at the checkout page and if I check the button to check out with Paypal it then goes to the next page saying order is being processed and then it goes right back to the checkout page. If I check the button to pay with check or money order it works just fine and it completes my checkout.

I have had this installed for a long time now and I never noticed any problems with it. I did switch to a new template and I made sure that all the files were uploaded to the new template but I am at a loss of what is going on. I haven't seen anything in my cache folder for any bugs when I test it out.

I have the newest version of zen cart and my site is https://www.frompropertorocker.com

Any ideas?

Thanks!

Never mind on this. :) I emailed the lady who helped me upgrade my cart and she helped me figure it out. It looks like the PayPal had issues with the zip code matching the city/state on my test customer account. It's all fixed now. :)

22 Aug 2012, 7:22 PM
#1394
danielle avatar

danielle

Totally Zenned

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

Re: Fast and Easy Checkout

I have FEC 1.10.1 installed on Zen-Cart 1.3.9h. If I leave a field blank during registration, it gives me the error message at the top of the page as it should, but it also empties all of the other fields so the customer has to re-enter all of the information. Shouldn't the fields stay populated so they only have to enter the field that was missed?

22 Aug 2012, 11:06 PM
#1395
boxcar avatar

boxcar

New Zenner

Join Date:
Jun 2007
Posts:
47
Plugin Contributions:
0

Re: Fast and Easy Checkout

After installing Fast and Easy Checkout, when I do a search, the search results use the checkout_payments template

/includes/languages/english/extra_definitions/theme/checkout_payment.php

instead of the tpl_advanced_search_default.php template

/public_html/includes/templates/theme309/templates/tpl_advanced_search_default.php

I don't know why this started happening or where to go to fix it. Any suggestions?

I am using ZC V1.3.9b

23 Aug 2012, 1:23 AM
#1396
boxcar avatar

boxcar

New Zenner

Join Date:
Jun 2007
Posts:
47
Plugin Contributions:
0

Re: Fast and Easy Checkout

I got it working right, finally.

What I had to do was add a copy of
/includes/languages/english/advanced_search_result.php

to

/includes/languages/english/extra_definitions/theme/advanced_search_result.php

This is the language definitions file. I don't know why it affects template selection, though. It is a mystery.

24 Aug 2012, 3:23 AM
#1397
cntgifts avatar

cntgifts

Totally Zenned

Join Date:
Sep 2005
Posts:
836
Plugin Contributions:
0

Re: Fast and Easy Checkout

Does other Plug ins effect this?

24 Aug 2012, 5:25 PM
#1398
cntgifts avatar

cntgifts

Totally Zenned

Join Date:
Sep 2005
Posts:
836
Plugin Contributions:
0

Re: Fast and Easy Checkout

i installed this and im not seeing the option to check out without account and when i check out orders dont go through

25 Aug 2012, 12:18 AM
#1399
boxcar avatar

boxcar

New Zenner

Join Date:
Jun 2007
Posts:
47
Plugin Contributions:
0

Re: Fast and Easy Checkout

You need to turn it on first - Configuration > Fast and Easy Checkout Configuration

25 Aug 2012, 10:20 PM
#1400
discoverytdi avatar

discoverytdi

Totally Zenned

Join Date:
May 2011
Location:
Sunny Rossendale (not)
Posts:
562
Plugin Contributions:
0

Re: Fast and Easy Checkout

HI I'm using FEC set to COWOA only (I never get returning customers due to my products) is there a way of my T & Cs and privacy statements opening in a new page as at the moment if you click the link it takes you to the page but when you return to the no account page all the information is wiped:censored: