View Single Post
  #6  
Old 11-10-2010, 04:15 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: Display Manufacturer Name on Products Page

BACKUP FIRST. THIS IS NOT TESTED.

Try adding this in products.php just before
$smarty->assign("cat_products", $products);

if (!empty($products)) {
foreach ($products as $k=>$v)
$products[$k]['manufacturer'] = func_query_first_cell("SELECT manufacturer FROM $sql_tbl[manufacturers] WHERE manufacturerid = $v[manufacturerid]");
}
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote