Quote Originally Posted by clydejones View Post
You'll need to edit

includes/templates/YOUR_TEMPLATE/common/

tpl_footer.php

tpl_tpl_main_page.php
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.

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
?>
Thank you, Kim
Would I add