Page 176 of 218 FirstFirst ... 76126166174175176177178186 ... LastLast
Results 1,751 to 1,760 of 2177
  1. #1751
    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. #1752
    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. #1753
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,846
    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. #1754
    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. #1755
    Join Date
    Jan 2013
    Posts
    811
    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. #1756
    Join Date
    Jan 2013
    Posts
    811
    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. #1757
    Join Date
    Jan 2013
    Posts
    811
    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.

  8. #1758
    Join Date
    Apr 2013
    Location
    north carolina
    Posts
    110
    Plugin Contributions
    0

    help question FEC 1.14.3/CJL 3.0.1 and Stock by Attribute 1.5.3 integration (ZC 1.5.1)

    Hi FEC Gurus,

    I'm currently testing my FEC install and love the functionality it offers, but it's not a smooth ride (partly because I'm not a programmer). I hope you can help me with the following integration issue.

    While Stock by Attribute continues to work wonderfully by displaying low stock in the shopping cart as appropriate, it no longer displays it on the order confirmation page the way it did without FEC installed. I inserted the SBA code that normally resides in tpl_checkout_confirmation_default.php in the appropriate spots in tpl_fec_confirmation_default.php, tpl_checkout_stacked.php, and tpl_modules_esl_ordertotal.php, but that didn't solve the problem.

    What else do I need to do to make FEC and SBA work together?

    Thank you!
    Magz

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

    Default Re: FEC 1.14.3/CJL 3.0.1 and Stock by Attribute 1.5.3 integration (ZC 1.5.1)

    Are you using one page checkout? If so, there is no confirmation page.

  10. #1760
    Join Date
    Apr 2013
    Location
    north carolina
    Posts
    110
    Plugin Contributions
    0

    Default Re: FEC 1.14.3/CJL 3.0.1 and Stock by Attribute 1.5.3 integration (ZC 1.5.1)

    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.

    Quote Originally Posted by bislewl View Post
    Are you using one page checkout? If so, there is no confirmation page.

 

 

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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR