Re: Manufacturer Link 4.1.x
I have done this, I was just trying to remember how. I think this may be it...
In products.php enter the code
if($products)
{
foreach($products as $key=> $product)
$products[$key]["manufacturer"]= func_query_first_cell("select manufacturer from $sql_tbl[manufacturers] where manufacturerid=".$product["manufacturerid"]);
}
just before assigning the $smarty variables.
|