Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How can I remove banners of oscommerce


mariush

Recommended Posts

Posted
do you want to change the logo or remove complet

I found it. I wanted to remove completly. It is in administration panel: Tools/Banners. Thanks.

 

Now I want to remove on righthand-side areas: LANGUAGES and CURRIENCES. How can I do it?

Posted

includes / column_right.php

 

find:

 

 include(DIR_WS_BOXES . 'languages.php');
  include(DIR_WS_BOXES . 'currencies.php');

 

replace with:

 

 // include(DIR_WS_BOXES . 'languages.php');
  // include(DIR_WS_BOXES . 'currencies.php');

Search the forum and contributions before posting. If that doesn't work, keep looking, then post. The forum is for seeking help and advice NOT for someone to do your work for you. Try to do something on your on, if you are going to run a shop then learn how it works.

Posted
includes / column_right.php

 

find:

 

 include(DIR_WS_BOXES . 'languages.php');
  include(DIR_WS_BOXES . 'currencies.php');

 

replace with:

 

 // include(DIR_WS_BOXES . 'languages.php');
  // include(DIR_WS_BOXES . 'currencies.php');

 

Thanks - It works.

Posted

I know., You Welcome... :thumbsup:

 

Notice the code. All that is different is I added // in front of each line. That is what is called commenting out. So that way you still keep the code in tact it is just not renedered by the PHP engine. So if you ever need to use them you don't have to install the code, you just delete the // and you good to go again.

Search the forum and contributions before posting. If that doesn't work, keep looking, then post. The forum is for seeking help and advice NOT for someone to do your work for you. Try to do something on your on, if you are going to run a shop then learn how it works.

Archived

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

×
×
  • Create New...