View Single Post
  #13  
Old 10-27-2004, 07:10 AM
 
pmstudios pmstudios is offline
 

Senior Member
  
Join Date: May 2004
Posts: 133
 

Default

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...
__________________
X-Cart 4.0.5
MySQL: 3.23.58
PHP 4.3.2
Reply With Quote