See the highlighted comments below:

Quote Originally Posted by kburner View Post
I am taking a guess at this....

In tpl_main_page - would I add:

HTML Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
  if (in_array($current_page_base,explode(",",'login,account,no_account,checkout,create_account,conditions,privacy,site_map,returns,shopping_cart,checkout_shipping,checkout_payment,checkout_confirmation,checkout_success,account,account_back_in_stock_notifications,account_newsletters,account_notifications')) ) {
    $flag_disable_right = true;
	$flag_disable_left = true;
	$flag_disable_header = true;
	$flag_disable_footer = true;
  }
To disable footer on these pages.

This is correct!


For tpl_footer - what do I modify in the bottom statement to get copyright only to show?

HTML Code:
<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div>
<!--eof- site copyright display -->

<?php
} // flag_disable_footer
?>
Cut this from tpl_footer.php and past is into tpl_main_page.php just before <!--bof- parse time display -->:

<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div>
<!--eof- site copyright display -->
<!--bof- parse time display -->



Thank you, Kim
Would I add