Results 1 to 10 of 2177

Hybrid View

  1. #1
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by jimmie View Post
    Couple of issues i am having. site is www.floorz-n-more.com
    fec Version 1.14.2
    2nd step is to edit orders.php, When i do i get text errors in mine and customers emails.
    reverted back to Default orders.php and all seem well.

    second issue is where do i see the dropdown info after it has been selected.
    I'm not completely understanding what you are trying to say but.

    You will need to make you are not using the orders.php from the COWOA module as that will mess up the variables in the text email.
    an if you add a drop down in Fast and Easy Checkout you will need to post that response where you would like it, it doesn't automatically appear on a page/document.

  2. #2
    Join Date
    Feb 2014
    Location
    The Netherlands
    Posts
    58
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Hi guys,

    I was hoping someone could help me out with an issue I'm having with Fast and Easy Checkout.

    I've installed Fast and Easy Checkout (after installing CSS and JS Loader without any problems) and everything seems to have gone well, with one exception. When I go the the Login/Checkout page of my website the CREATE AN ACCOUNT and RETURNING CUSTOMERS sections are showing, but the GUEST CHECKOUT is missing. It looks like it's been disabled, even though I've already performed the following steps:

    10. In the Admin Panel, go to Configuration->Layout Settings and set "Use split-login page" to True.
    11. In the Admin Panel, go to Configuration->Fast and Easy Checkout Configuration and set "Easy Sign-Up and Login" to true.
    12. In the Admin Panel, go to Configuration->Fast and Easy Checkout Configuration and Enable the mod by setting "Fast and Easy Checkout" to true.
    Is it possible that first I've to enable something in the Admin section?

    Additional remarks:
    * I have ZC version 1.5.1
    * I have a Template Monster theme installed, but I haven't encountered any conflicts so far.
    * My website is located at www.bonesfa****shion.nl (without the asterisks).
    * CSS and JS Loader is installed
    * The Dutch language files haven't been updated yet (so some definitions are missing if you select the Dutch language).

  3. #3
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by McLovin View Post
    Hi guys,

    I was hoping someone could help me out with an issue I'm having with Fast and Easy Checkout.

    I've installed Fast and Easy Checkout (after installing CSS and JS Loader without any problems) and everything seems to have gone well, with one exception. When I go the the Login/Checkout page of my website the CREATE AN ACCOUNT and RETURNING CUSTOMERS sections are showing, but the GUEST CHECKOUT is missing. It looks like it's been disabled, even though I've already performed the following steps:



    Is it possible that first I've to enable something in the Admin section?

    Additional remarks:
    * I have ZC version 1.5.1
    * I have a Template Monster theme installed, but I haven't encountered any conflicts so far.
    * My website is located at www.bonesfa****shion.nl (without the asterisks).
    * CSS and JS Loader is installed
    * The Dutch language files haven't been updated yet (so some definitions are missing if you select the Dutch language).
    did you put anything in your cart?

  4. #4
    Join Date
    Feb 2014
    Location
    The Netherlands
    Posts
    58
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by Design75 View Post
    did you put anything in your cart?


    Hehe... oops...

    Thank you!

  5. #5
    Join Date
    Jan 2013
    Location
    New Port Richey, Florida
    Posts
    969
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    FEC is working without modifying orders.php (i think) Can some1 check.
    www.floorz-n-more.com
    when i add in this
    Open includes/classes/order.php and find:
    CODE: SELECT ALL
    zen_db_perform(TABLE_ORDERS, $sql_data_array);
    Add before:
    CODE: SELECT ALL
    if ($_SESSION['COWOA']) $sql_data_array[COWOA_order] = 1; // FEAC
    Find:
    CODE: SELECT ALL
    //intro area
    $email_order = EMAIL_TEXT_HEADER . EMAIL_TEXT_FROM . STORE_NAME . "\n\n" .
    $this->customer['firstname'] . ' ' . $this->customer['lastname'] . "\n\n" .
    EMAIL_THANKS_FOR_SHOPPING . "\n" . EMAIL_DETAILS_FOLLOW . "\n" .
    EMAIL_SEPARATOR . "\n" .
    EMAIL_TEXT_ORDER_NUMBER . ' ' . $zf_insert_id . "\n" .
    EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_LONG) . "\n" .
    EMAIL_TEXT_INVOICE_URL . ' ' . zen_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $zf_insert_id, 'SSL', false) . "\n\n";
    Replace with:
    CODE: SELECT ALL
    // FEAC
    // COWOA Conditional
    if ($_SESSION['COWOA']) {
    $invoiceInfo = EMAIL_TEXT_INVOICE_URL . ' ' . zen_href_link(FILENAME_ORDER_STATUS, 'order_id=' . $zf_insert_id . '&query_email_address=' . $this->customer['email_address'] . '&action=process', 'SSL', false) . "\n\n";
    $htmlInvoiceURL = EMAIL_TEXT_INVOICE_URL_CLICK;
    $htmlInvoiceValue = zen_href_link(FILENAME_ORDER_STATUS, 'order_id=' . $zf_insert_id . '&query_email_address=' . $this->customer['email_address'] . '&action=process', 'SSL', false);
    } else {
    $invoiceInfo=EMAIL_TEXT_INVOICE_URL . ' ' . zen_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $zf_insert_id, 'SSL', false) . "\n\n";
    $htmlInvoiceURL=EMAIL_TEXT_INVOICE_URL_CLICK;
    $htmlInvoiceValue=zen_href_link(FILENAME_ACCOUNT_HISTORY_INFO, 'order_id=' . $zf_insert_id, 'SSL', false);
    }
    //intro area
    $email_order = EMAIL_TEXT_HEADER . EMAIL_TEXT_FROM . STORE_NAME . "\n\n" .
    $this->customer['firstname'] . ' ' . $this->customer['lastname'] . "\n\n" .
    EMAIL_THANKS_FOR_SHOPPING . "\n" . EMAIL_DETAILS_FOLLOW . "\n" .
    EMAIL_SEPARATOR . "\n" .
    EMAIL_TEXT_ORDER_NUMBER . ' ' . $zf_insert_id . "\n\n" .
    EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_SHORT) . "\n\n";
    $email_order .= $invoiceInfo;
    // END FEAC
    I get email text errors
    where do i post the drop down info to see it

  6. #6
    Join Date
    Jan 2013
    Location
    New Port Richey, Florida
    Posts
    969
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    also i notice on checkout page 2/3 i lose the sides of my sideboxes?

  7. #7
    Join Date
    Jan 2013
    Location
    New Port Richey, Florida
    Posts
    969
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by bislewl View Post
    I'm not completely understanding what you are trying to say but.

    You will need to make you are not using the orders.php from the COWOA module as that will mess up the variables in the text email.
    an if you add a drop down in Fast and Easy Checkout you will need to post that response where you would like it, it doesn't automatically appear on a page/document.
    i was using a cowoa orders.php, 1st issue Now fixed.

 

 

Similar Threads

  1. Replies: 4
    Last Post: 25 Jan 2012, 07:37 PM
  2. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  3. Go To Checkout Error - with Fast and Easy Checkout installed
    By RFree190 in forum General Questions
    Replies: 3
    Last Post: 10 Mar 2009, 07:08 AM
  4. checkout page not redirect (Fast and Easy Checkout module)
    By wowemall in forum Addon Templates
    Replies: 0
    Last Post: 27 Sep 2008, 02:36 PM
  5. Fast and Easy Checkout
    By cmes in forum General Questions
    Replies: 5
    Last Post: 15 Feb 2008, 04:07 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg