Hi there,

I'm using zencart 1.3.8a and I have installed the old mod from the archive section that adds a text description to the manufacturer info via admin (I know you shouldn't really use archive mods for current releases but it seems to work partially)

My admin section now has a text description that I can enter for each manufacturer (as expected) but I cannot get the descritpion to show on my product info pages!

This is the code that was suggested in an old thread (I think it maybe for an older version of zen?)

<!-- bof manufacturer info on prod page -->


<?php
if (isset($_GET['manufacturers_id']) && $_GET['manufacturers_id'] > 0) {
$chk_manufacturers_about_query = "select m.manufacturers_about
from " . TABLE_MANUFACTURERS_INFO . " mi
where mi.manufacturers_id = " . $_GET['manufacturers_id'];
$chk_manufacturers_about = $db->Execute($chk_manufacturers_about_query);

echo '<div class="text">' . $chk_manufacturers_about->fields['manufacturers_about'] . '</div>';
}
?>
<!-- eof manufacturer info on prod page -->

I have checked the DB and I have a table called manufacturers_info with a row called manufacturers_about and it is populated with data entered from the admin (so that bits looks to be working fine)

And PHP experts want to point me in the right direction to pull the info from the DB and display it below the product description in tpl_product_info_display.php????

Thanks in advance

Tony