View Single Post
  #14  
Old 08-04-2009, 10:15 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

I didn't keep the changes and my version is 4.2.1
If you insist on changing php files... open xcart_root/product.php find
Code:
$smarty->assign("location", $location);
and add before
Code:
$new_product_title = $product_info['manufacturer'] . " " . $product_info['product']; $smarty->assign("new_product_title", $new_product_title);
This will create a new variable and won't mess up with the product array. Then use it in product templates where you want the new title to appear
Code:
{$new_product_title}
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote