Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Removing the Powered by osCommerce


Guest

Recommended Posts

Posted

How do i remove the Powered by osCommerce at the bottom of my site?

Posted

catalog/includes/languages/english.php (assuming English language):

 

define('FOOTER_TEXT_BODY', 'Copyright © ' . date('Y') . ' <a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . STORE_NAME . '</a><br>Powered by <a href="http://www.oscommerce.com" target="_blank">osCommerce</a>');

Posted

also the Copyright ? 2005 Izzy Thompson LLC

 

so i can put my own company's name

Posted

the easiet way to remove them both is to go to

includes/footer.php

 

find

<td align="center">
<?php  echo FOOTER_TEXT_BODY; ?> 
</td>
 </tr>

 

Then comment out the footer text like so by adding //

 

<td align="center">
<?php // echo FOOTER_TEXT_BODY; ?> 
</td>
 </tr>

 

That will remove the copywrite and the oscommerce part. you can add your own text here if you want like this

 

<td align="center">
Copyright My Store All tradmarks and images are property of their respective owners.
<?php // echo FOOTER_TEXT_BODY; ?> 
</td>
 </tr>

Posted

The above solution kind of rules out the need for the language file which is there to make things easier for you.

 

edit the code in the english file as mentioned in the first reply to your original question as this also contains the copyright text code:

 

 

 

----CODE----

 

define('FOOTER_TEXT_BODY', 'Copyright ? ' . date('Y') . ' <a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . STORE_NAME . '</a><br>Powered by <a href="http://www.oscommerce.com" target="_blank">osCommerce</a>');

 

----CODE----

 

The BLACK code after 'FOOTER_TEXT_BODY' shows the Copyright ? text on your page so leave this intact if you still wish that to show up

 

The RED code is the company text.... edit the whole of the red text if you do not wish for your company name in the footer to link back to the catalog home page... if you do want the link then just edit this text:

. STORE_NAME .

in between the link call.

 

The blue CODE is the Powered by osCommerce text

 

HTH.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...