Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How change the footer text?


2020

Recommended Posts

Hey people!

 

How can i change the text in the footer?

The original text is:

 

Copyright ? 2003 osCommerce

Powered by osCommerce

 

more a oscommerce banner

 

i want to change to:

 

Copyright ? 2005 My Store's name

Powered by osCommerce

 

and without those oscommerce banner

 

I don't find the place to change this.

 

Thanks to any help

Link to comment
Share on other sites

includes\languages\english.php around line 333

 

at the bottom

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

Vertical Climb watch me loose grip an plumit!!

Link to comment
Share on other sites

incudes/footer.php around line 49 reads

 

  if ($banner = tep_banner_exists('dynamic', '468x50')) {
?>
<br>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
 <tr>
   <td align="center"><?php echo tep_display_banner('static', $banner); ?></td>
 </tr>
</table>
<?php
 }
?>

 

REPLACE It WITH

/*  if ($banner = tep_banner_exists('dynamic', '468x50')) {

?>

<br>

<table border="0" width="100%" cellspacing="0" cellpadding="0">

  <tr>

    <td align="center"><?php echo tep_display_banner('static', $banner); ?></td>

  </tr>

</table>

<?php

  }

?>

Vertical Climb watch me loose grip an plumit!!

Link to comment
Share on other sites

Thanks... no problem to change the "copyright" but when i changed the footer ( i don't changed in the file structure, but in a word pad and after upload it) appear this message:

 

Warning: Unterminated comment starting line 49 in /home/faww/public_html/catalog/includes/footer.php on line 49

 

Without banner but with this message.. what can i do?

Link to comment
Share on other sites

oh no problem anymore.. the code may be thus:

 

<?php

/*  if ($banner = tep_banner_exists('dynamic', '468x50')) {

?>

<br>

<table border="0" width="100%" cellspacing="0" cellpadding="0">

  <tr>

    <td align="center"><?php echo tep_display_banner('static', $banner); ?></td>

  </tr>

</table>

<?php

  }

?>

*/

 

Thanks guy!

Link to comment
Share on other sites

Thanks... no problem to change the "copyright" but when i changed the footer ( i don't changed in the file structure, but in a word pad and after upload it) appear this message:

 

Warning: Unterminated comment starting line 49 in /home/faww/public_html/catalog/includes/footer.php on line 49

 

Without banner but with this message.. what can i do?

 

You can simple delete the banner in Administration at the bottom under 'Tools" in Banner Manager.

 

 

For your own copyright you can change that in the same 'Tools' in 'Define Languages' clicking on english.php. Scroll right down to the bottom and change the text.

 

Please leave this comment intact together with the

following copyright announcement.

*/

define('FOOTER_TEXT_BODY', 'Copyright? 1998 - 2005 - ECG Naturals - All Rights Reserved <br><br>Powered by <a href="http://www.oscommerce.com" target="_blank">osCommerce</a>');

?>

 

I changed mine as above, you can view it at www.ecgnaturals.com/store

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...