I don't know much php but this looks like relevant code?
$manufacturer['image_path'] = func_get_image_url($manufacturerid, "M", $manufacturer['image_path']);
So can anyone tell me how to get the url to the manufacturer for a given product?
I've got the logo displaying - but i want it to be an active link (why wouldn't I????)
I just need to get the $manufacturerid variable to work (this example below is for a plain text link - not the logo version / but easily transferable)
HTML Code:
<a href="manufacturers.php?manufacturerid={$manufacturerid}">{$manufacturer}</a><br />
what am i doing wrong here?
Thanks