I just upgraded FEC and something has changed in the CSS. I do not know what it is.
login.css
Turn off your sidebars once in checkout to reduce abandonment and distraction
includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php
add the following, near the top and directly after */
Code:
//add page names that you wantto disable left and right columns
$center_column_only = array('login','checkout','fec_confirmation','account','logoff');
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,$center_column_only) ) {
$flag_disable_right = true;
$flag_disable_left = true;
}
Turn OFF the order confirmation so they are taken directly to PayPal and miss the confusing step where a shopper likely thinks you forgot to collect their payment information.
Configuration >> Fast and Easy Checkout Configuration
One Page Checkout set to true
That way they will be taken directly to PayPal instead of the additional step on the end.
~Melanie