Quote:
Originally Posted by TheComputerGuy
Ok, i'm also interested to display the Manufacture, but instead of the Products (customer/main/products.tpl) I want to display it on the actual Product Page (customer/main/product.tpl).
|
In product.php, near the bottom (add lines marked with +)
Code:
$smarty->assign("product",$product_info);
+ $manufacturer = func_query_first("SELECT manufacturer FROM $sql_tbl[manufacturers] WHERE manufacturerid='$product_info[manufacturerid]'");
+ $smarty->assign("manufacturer", $manufacturer);
In customer/product.tpl, use {$manufacturer.manufacturer} to display it...