View Single Post
  #6  
Old 09-17-2008, 06:10 AM
  TBone's Avatar 
TBone TBone is offline
 

Advanced Member
  
Join Date: May 2007
Posts: 38
 

Cool Re: Show Feature Product with other products

This is what i did to show the featured products also when the catefory has products assigned to it. (did this on xcart 4.1.10)

In home.php comment out

if (empty($products))


In

featured_products.php I added

$searchtype="featured";

just before

include $xcart_dir."/include/search.php";

and commented out

$smarty->clear_assign("products");

In include/search.php I replaced

$smarty->assign("products", $products);

with

if (!$searchtype=="featured") {
$smarty->assign("products", $products);
}

In products.php I added

$products = array();
unset($search_data, $products);

Just before

?> at the bottom of the page
__________________
_____________________________________________
www.webcreatives.nl | X-Cart Shops
X-Cart Versions 4.1.x | 4.2.x | 4.3.x | 4.4.x
Parallelweg 124-14, 1948 NN BEVERWIJK
The Netherlands
Reply With Quote