Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
jimmie
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.
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:
Quote:
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).
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
McLovin
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?
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Design75
did you put anything in your cart?
:huh:
Hehe... oops...
Thank you! :D
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
Re: Fast and Easy Checkout for Zen Cart
also i notice on checkout page 2/3 i lose the sides of my sideboxes?
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
bislewl
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.
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
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.
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
Are you using one page checkout? If so, there is no confirmation page.