Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Line "New Products For ..."


matijaz

Recommended Posts

Posted

do you just want to delete that line or the entire new product box from the index page.

"Aliiiiive, it's alive, it's ALIIIIIIIIIIIIIVE!!!"

Posted

for entire box

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);
?>

 

for just the header for the box

 

catalog/includes/modules/products_new.php

 

 $info_box_contents[] = array('text' => sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B')));

change to

// $info_box_contents[] = array('text' => sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B')));

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...