Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Possible to Remove "Powered by Oscommerce" Link


10 replies to this topic

#1 prejai

  • Community Member
  • 8 posts
  • Real Name:Premanand
  • Gender:Male
  • Location:India

Posted 21 August 2008, 15:44

Hi programmers,

Its possible to remove "Powered by Oscommerce" link in Front store footer???

One of our client, Said, its impossible for them onces if they removered the "Powered by Oscommerce" link in the footer of front end store in UK & in US.

Please note, We have changed entrire design & added around 6 contributions in our project.

Can anyone guide us?

Thanks!!!

Edited by prejai, 21 August 2008, 15:46.


#2 Jan Zonjee

  • Team Member
  • 7,001 posts
  • Real Name:Jan Zonjee
  • Gender:Male
  • Location:the Netherlands

Posted 21 August 2008, 16:09

View Postprejai, on Aug 21 2008, 05:44 PM, said:

Its possible to remove "Powered by Oscommerce" link in Front store footer???
See Copyright policy

#3 sshop

  • Community Member
  • 4 posts
  • Real Name:Alex Cummins

Posted 26 August 2008, 17:00

could you sell a copyright removal? (if you do already, could i please have the link)

thanks, alex

#4 m.a.t.t

  • Community Member
  • 106 posts
  • Real Name:Matt Hawkins

Posted 26 August 2008, 18:48

If you read the policy, it says that the copyright can be removed:

Quote

The osCommerce copyright announcement displayed on the Catalog side of osCommerce Online Merchant can, however, be modified, and even be removed.

Please note that the osCommerce Online Merchant Administration Tool copyright announcement must still exist regardless if the default osCommerce-copyrighted Administration Tool theme has been modified.

The separate text "Powered by osCommerce", or similar text, displayed on both Administration Tool and Catalog modules is optional to have displayed.


#5 yesitshere

  • Community Member
  • 63 posts
  • Real Name:Alex

Posted 18 February 2009, 10:33

View Postm.a.t.t, on Aug 26 2008, 07:48 PM, said:

If you read the policy, it says that the copyright can be removed:


Do they mean with it, within the php files?

#6 dickeydunkin

  • Banned
  • 1 posts
  • Real Name:dickey dunkin

Posted 16 March 2009, 17:15

View Postm.a.t.t, on Aug 26 2008, 11:48 AM, said:

If you read the policy, it says that the copyright can be removed:


it is in your ./includes/footer.php file

#7 sivakrishna

  • Community Member
  • 1 posts
  • Real Name:siva

Posted 30 March 2009, 00:08

View Postdickeydunkin, on Mar 16 2009, 05:15 PM, said:

it is in your ./includes/footer.php file
hi dick, i need remove in main store page not in admin page, can u help to me abt this.

#8 mayo23

  • Community Member
  • 29 posts
  • Real Name:Lawrence May
  • Gender:Male

Posted 02 April 2009, 21:38

Open up includes/footer.php


Find the following code and remove;

<table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
	<td align="center" class="smallText"><?php echo FOOTER_TEXT_BODY; ?></td>
  </tr>
</table>

That's it
My latest osCommerce work in progress

no outside links in signatures allowed, see PM

#9 TS153

  • Community Member
  • 47 posts
  • Real Name:Terry Scarr

Posted 03 April 2009, 14:11

Where would you find the actual text so as I can change it to something else

#10 Jan Zonjee

  • Team Member
  • 7,001 posts
  • Real Name:Jan Zonjee
  • Gender:Male
  • Location:the Netherlands

Posted 03 April 2009, 21:38

View PostTS153, on Apr 3 2009, 04:11 PM, said:

Where would you find the actual text so as I can change it to something else
In catalog/includes/languages/whateveryourlanguage.php

For example at the bottom of catalog/includes/languages/english.php you will find:
define('FOOTER_TEXT_BODY', 'Copyright &copy; ' . 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>');


#11 TS153

  • Community Member
  • 47 posts
  • Real Name:Terry Scarr

Posted 04 April 2009, 03:22

View PostJan Zonjee, on Apr 4 2009, 08:38 AM, said:

In catalog/includes/languages/whateveryourlanguage.php

For example at the bottom of catalog/includes/languages/english.php you will find:
define('FOOTER_TEXT_BODY', 'Copyright &copy; ' . 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>');

Thanks, that makes so much sense, I knew I saw it somewhere, but instead of changing it then or writing it down I did the whole I'll have to remember that. lol.