Everything I've tried on the product info page results in a no_image pic so obviously I'm missing something. I first tried $manufacturers_id and then tried this:
PHP Code:
<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . zen_image(DIR_WS_IMAGES. $manufacturers_image, $manufacturers_name, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</li>' : '') . "\n"
Since functions_products.php has this, zen_get_products_manufacturers_image($products_id), I also tried something like that before calling for the image but I suspect my coding skills are failing if this actually can be utilized here. How can I use that function to call the image in the product details?
I also want to make the manufacturer name a link to that brand page. Do I need to add a query to pull that info out on the products page or is there something already available I can use?
Bookmarks