Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Manufactures Box Removal


ama

Recommended Posts

Posted

I want to remove the manufactures box from the pages..

 

Where is the code????

Thank You,

 

Bevery G.

Posted

In *catalog*/includes/column_right.php find this code:

 if (isset($HTTP_GET_VARS['products_id'])) include(DIR_WS_BOXES . 'manufacturer_info.php');

Change it to this:

#if (isset($HTTP_GET_VARS['products_id'])) include(DIR_WS_BOXES . 'manufacturer_info.php');

Posted

Because it does not delete the line...instead it just comments it out ala old school C style. That way if it needs to be changed back it can be reverted easily in one keystroke...

Posted

:Thanks Alot.. but when I did that it did not work ;) .. What could be wrong???

Thank You,

 

Bevery G.

Posted

In includes/column_left.php find this code:

  if ((USE_CACHE == 'true') && empty($SID)) {
   echo tep_cache_manufacturers_box();
 } else {
   include(DIR_WS_BOXES . 'manufacturers.php');
 }

And change it to this:

#  if ((USE_CACHE == 'true') && empty($SID)) {
#    echo tep_cache_manufacturers_box();
#  } else {
#    include(DIR_WS_BOXES . 'manufacturers.php');
#  }

Archived

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

×
×
  • Create New...