View Single Post
  #8  
Old 12-16-2007, 02:49 AM
 
mike_turbo mike_turbo is offline
 

Advanced Member
  
Join Date: Oct 2007
Posts: 38
 

Default Re: X-Cart 4.1.3 Showing Manufacturer on Product Page

works fine in 4.1.9

Only thing in your code you have

Code:
{if $manufacturer ne ""} <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"> <tr> <td height="70"><div align="center"><A href="manufacturers.php?manufacturerid={$product.m anufacturerid}"> <img src="image.php?id={$product.manufacturerid}&type=M " alt="{$manufacturer}" /></a></div></td> </tr> <tr> <td align="center" valign="middle"></td> </tr> </table> </TD>{/if}


It should be
Code:
{if $manufacturer ne ""} <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"> <tr> <td height="70"><div align="center"><A href="manufacturers.php?manufacturerid={$product.manufacturerid}"> <img src="image.php?id={$product.manufacturerid}&type=M " alt="{$manufacturer}" /></a></div></td> </tr> <tr> <td align="center" valign="middle"></td> </tr> </table> </TD>{/if}

Otherwise you can not click the logo to the actual manufactuor page
(you had a space here href="manufacturers.php?manufacturerid={$product.m anufacturerid}"> <img)

Thanks,

Mike
__________________
Version 4.1.9
Reply With Quote