
Originally Posted by
Jace
Sure, would be happy to. Here's my coding below. The first line should already be in the tpl_product_info_display.php file, and the second line, from memory, I added in to show and link the image:
Thanks for the quick response! I ended up using a line from another post and it worked just fine. After a little modification and surrounding it in a div I was able to position it as I pleased with a little CSS.
For those that find this thread in the future. This what I used.
PHP Code:
<?php echo (($flag_show_product_info_manufacturer == 1 and zen_get_products_manufacturers_image((int)$_GET['products_id']) != '' ) ? '<div class="forward">' .'<a href="' . zen_href_link(FILENAME_DEFAULT, 'manufacturers_id=' . $product_info->fields['manufacturers_id']) . '">' . zen_image(DIR_WS_IMAGES . zen_get_products_manufacturers_image((int)$_GET['products_id']), 'click to view products by this manufacturer') . '</a>' . '</div>' : ''); ?>
I didnt place it in the <ul> of the other attributes. I placed it directly under the product name div
to see the results on my site