Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to delete "what s new in february" table


Richyy

Recommended Posts

Posted

Hi everybody,

I m not able to find it neither in leftcolumn.php nor in the others to desactivate it.

Please can sombody help me tolocate it in which file to desactivate it.

I m talking about the "what s new in february" box that comes atthe buttom of the index.php

 

Thank you very much..

Posted

This box is used for more than one thing but to completely remove the box

 

it is the new products box catalog/index.php

 

catalog/index.php

 

Try looking for this around line 121

 

<td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>

change to this

<td><?php //include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>

 

This around line 280 (for product list)

 

<td><?php include(DIR_WS_MODULES . FILENAME_PRODUCT_LISTING); ?></td>

change to this

<td><?php //include(DIR_WS_MODULES . FILENAME_PRODUCT_LISTING); ?></td>

 

This around line 313

 

<td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>

change to this

<td><?php //include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>

 

This around line 316 ( for upcoming products)

 

<?php
   include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS);
?>

change to this

<?php
  // include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS);
?>

No longer giving free advice. Please place deposit in meter slot provided.  Individual: [=] SME: [==] Corporation: [===]
If deposit does not fit one of the slots provided then you are asking too much! :P

Is your Osc dated try Phoenix  raising oscommerce from the ashes.

Archived

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

×
×
  • Create New...