Quote Originally Posted by new2u View Post
I was also thinking, my site is a 3 column design. Would this be able to override the left and right sidebars?
Instructions for killing the columns is at the bottom of the module documentation at /fec/documentation.html


Code:
 If you want to disable the left and right columns on the checkout, add the following code:

Code:

//add page names that you wantto disable left and right columns
$center_column_only = array('checkout'); // add any other page names here separated by commas, no spaces
// 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;