View Single Post
  #8  
Old 08-04-2009, 05:34 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: Manufacturer name in from of Product name

This is the code you put in include/func/func.product.php just before "return $product"

Code:
$product["product"] = $product['manufacturer'] . " " . $product['product'];

and it will show just like you want it. If you want to manually show it somewhere in skin1/customer/main/product.tpl you call it like this
Code:
{$product.product}
If you want the product title to be with manufacturer name change the first code like this
Code:
$product["producttitle"] = $product['manufacturer'] . " " . $product['product'];
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote