sanithkumar Posted January 6, 2014 Share Posted January 6, 2014 Hi Moderators, Please help to customize some features My Website Link : http://videolinkindia.com I have duplicated Home featured module and it was success, i wanted to display products from different categories, now the module showing products only from 'home' category. i have seen many solutions on net by changing code on file homefeatured1.php (which i renamed for duplication) by changing code $category = new Category(Context::getContext()->shop->getCategory(), (int)Context::getContext()->language->id); $nb = (int)Configuration::get('HOME_FEATURED_NBR'); $products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8)); to $category = new Category(14, (int)Context::getContext()->language->id); $nb = (int)Configuration::get('HOME_FEATURED_NBR'); $products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8)); but in my case its not working. it shows no featured products I have following product categories, Main categories and their sub categories Camera (id 11) - DSLR Camera (12) - Point and Shoot (13) Accessories (14) - Lenses (15) - Memory Card (16) If required i can provide you the back-end user pass Any help would be appreciated!! Thanks Link to comment Share on other sites More sharing options...
vekia Posted January 6, 2014 Share Posted January 6, 2014 simple questin: have you got products associated with category id: 14 ? Link to comment Share on other sites More sharing options...
sanithkumar Posted January 7, 2014 Author Share Posted January 7, 2014 Oooops!!! Your simple question killed me. yes i hadn't add any products under category 14. now its working cool... sorry for making you busy for few minutes. Thanks Link to comment Share on other sites More sharing options...
vekia Posted January 7, 2014 Share Posted January 7, 2014 you're welcome glad to hear that it works now whole topic marked as [solved] by the way: welcome on board Link to comment Share on other sites More sharing options...
Recommended Posts