Nevermind, resolved it..... i did it like this:
PHP Code:
if ($manufacturers_id > '0')
{$show_manufacturer = true;}
else
{$show_manufacturer = false;}
$manufacturer_filename = 'define_manufacturer_'.$manufacturers_id.'.php';
$define_sidebox = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', $brand_filename, 'false');
if ($show_manufacturer = true)
require($template->get_template_dir('tpl_manufacturer.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_manufacturer.php');
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
This way, you can have Manufacturer's Information in the Product listing....