LostInPHP Posted May 31, 2003 Posted May 31, 2003 On my 3rd try of setting up my store and all is going well so far (knocking on wood, throwing salt over shoulder, standing on head holding breath and anything else I can do to not jinx myself for just saying that) :) On to my question.... How do I remove the Manufactures Info Box(on the right) on the product info page. I'm the only manufacturere so I don't need this info anywhere. I've probably looked right at where I need to comment it out *sigh* Still learning and have a looooooong way to go. Thanks for any help you can offer! Terri Help me I'm lost in PHP and I don't have a map!
Daemonj Posted May 31, 2003 Posted May 31, 2003 Edit the catalog/includes/column_left.php file to comment out the call. Find: if ( (USE_CACHE == 'true') && !defined('SID')) { echo tep_cache_manufacturers_box(); } else { include(DIR_WS_BOXES . 'manufacturers.php'); } and make it look like: /* if ( (USE_CACHE == 'true') && !defined('SID')) { echo tep_cache_manufacturers_box(); } else { include(DIR_WS_BOXES . 'manufacturers.php'); } */ and that should do it for ya. ;) "Great spirits have always found violent opposition from mediocre minds. The latter cannot understand it when a man does not thoughtlessly submit to hereditary prejudices but honestly and courageously uses his intelligence." - A. Einstein
LostInPHP Posted May 31, 2003 Author Posted May 31, 2003 That was a big help! Terri Help me I'm lost in PHP and I don't have a map!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.