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

Fast and Easy Checkout

Views: 550,831

Results 401 to 420 of 2,177
25 Jan 2009, 12:27 AM
#401
numinix avatar

numinix

Totally Zenned

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

Fast and Easy Checkout

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:

// 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;

No the problem is your files are not all up to date:

Viewing the source I see:

```php
<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.
30 Jan 2009, 1:09 PM
#403
giftmeister avatar

giftmeister

Zen Follower

Join Date:
Jan 2009
Location:
Montreal, Canada
Posts:
230
Plugin Contributions:
0

Re: Fast and Easy Checkout

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

30 Jan 2009, 2:30 PM
#404
giftmeister avatar

giftmeister

Zen Follower

Join Date:
Jan 2009
Location:
Montreal, Canada
Posts:
230
Plugin Contributions:
0

Re: Fast and Easy Checkout

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

1 Feb 2009, 11:53 AM
#405
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Fast and Easy Checkout

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:

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?

index.php?main_page=checkout&action=null

I need it to redirect back to this page so payment can be re done.

3 Feb 2009, 9:44 PM
#406
giftmeister avatar

giftmeister

Zen Follower

Join Date:
Jan 2009
Location:
Montreal, Canada
Posts:
230
Plugin Contributions:
0

Re: Fast and Easy Checkout

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

10 Feb 2009, 3:05 PM
#407
lankeeyankee avatar

lankeeyankee

Totally Zenned

Join Date:
Jan 2007
Posts:
1,514
Plugin Contributions:
1

Re: Fast and Easy Checkout

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

10 Feb 2009, 9:17 PM
#408
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Fast and Easy Checkout

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:

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
index.php?main_page=checkout&action=null

I need it to redirect back to this page so payment can be re done.

Anyone?

11 Feb 2009, 5:45 AM
#409
numinix avatar

numinix

Totally Zenned

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

Re: Fast and Easy Checkout

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.

13 Feb 2009, 5:34 AM
#410
casmusic avatar

casmusic

New Zenner

Join Date:
Jun 2008
Posts:
3
Plugin Contributions:
0

Re: Fast and Easy Checkout

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)?? **

14 Feb 2009, 1:59 AM
#411
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Fast and Easy Checkout

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?

14 Feb 2009, 5:56 AM
#412
brianosc avatar

brianosc

New Zenner

Join Date:
Dec 2007
Posts:
16
Plugin Contributions:
0

Re: Fast and Easy Checkout

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.

17 Feb 2009, 6:15 PM
#413
dave_nextexit avatar

dave_nextexit

New Zenner

Join Date:
Mar 2008
Posts:
57
Plugin Contributions:
0

Re: Fast and Easy Checkout

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

18 Feb 2009, 4:53 AM
#414
giftmeister avatar

giftmeister

Zen Follower

Join Date:
Jan 2009
Location:
Montreal, Canada
Posts:
230
Plugin Contributions:
0

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

<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

18 Feb 2009, 7:29 PM
#415
numinix avatar

numinix

Totally Zenned

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

Re: Fast and Easy Checkout

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.

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

18 Feb 2009, 10:42 PM
#416
giftmeister avatar

giftmeister

Zen Follower

Join Date:
Jan 2009
Location:
Montreal, Canada
Posts:
230
Plugin Contributions:
0

Re: 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

19 Feb 2009, 4:06 AM
#417
numinix avatar

numinix

Totally Zenned

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

Re: Fast and Easy Checkout

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.

19 Feb 2009, 7:15 AM
#418
craft_magick avatar

craft_magick

Zen Follower

Join Date:
Nov 2007
Posts:
166
Plugin Contributions:
0

Re: Fast and Easy Checkout

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

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

19 Feb 2009, 12:51 PM
#419
giftmeister avatar

giftmeister

Zen Follower

Join Date:
Jan 2009
Location:
Montreal, Canada
Posts:
230
Plugin Contributions:
0

Re: Fast and Easy Checkout

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

# 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());
19 Feb 2009, 5:48 PM
#420
numinix avatar

numinix

Totally Zenned

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

Re: Fast and Easy Checkout

Just use this command as the others would have already been processed:

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());