In RC2.2a, is there a way to hide the manufacturer's box only when a certain manufacturer's product listing page is shown?
currently in includes/column_left.php:
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_manufacturers_box();
} else {
include(DIR_WS_BOXES . 'manufacturers.php');
}
I need to exclude the box for a particular manufacturer (#30) to satisfy a particular supplier's requirement. Is there any conditional statement that allows for this?
Thanks










