View Single Post
  #9  
Old 01-05-2013, 07:43 AM
 
anandat anandat is offline
 

X-Adept
  
Join Date: Jan 2004
Posts: 914
 

Thumbs up Re: Manufacturer on Product List / Recommended

Ok I managed to show it for featured products also

Open featured_products.php

Find this at the bottom of the file:
PHP Code:
$smarty->assign('f_products'$products); 

Add this code above that line:

PHP Code:
if ($products)
    foreach (
$products as $k => $v)
$products[$k]['manufacturer'] = func_query_first_cell("select manufacturer from $sql_tbl[manufacturers] where manufacturerid = '$v[manufacturerid]'"); 

Done...Now it should display on featured products also on home page
__________________
X-Cart: 4.7.7 LIVE
Skin:Ultra by xcartmods.co.uk
X-cart Modules: | ACR, Rich Google Search, Customer Testimonials | Cloud Search, | Websitecm: CDSEO (2.1.9)
---------------
Server: Linux
php: 5.3
mysql: 5.0.89
----------------
Reply With Quote