Hi all.. I have been searching for a solution for this for a while and it seams like there is a very large need for this.. If I can get it to work I will post a how to .. But I need some help in definining the display of the information.

I created a Field in the _manufacturers table called manufacturers_description

for the first step I would like to create the display on the public side of the cart. which is in tpl_product_info_display.php

Why Can't I do something like this..????

<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>

<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_description)) ? . $manufacturers_description . '') . "\n"; ?>

it's not giving me results it's actually breaking the layout?