Jump to content

Modificare blocco categorie


RuletZ

Recommended Posts

Cercando nel forum ho parzialmente risolto adesso chiedo aiuto a voi!

La modifica che ho trovato mi consente di visualizzare nel blocco solo la categoria selezionata senza visualizzare le altre. Adesso mi servirebbe visualizzare solo la subcategoria che seleziono senza vederle tutte assieme.

Grazie.

Questo è il codice che ho inserito modificando il file blockcategories.php:


if(isset($_GET['id_category']))

        {
           if(isset($_GET['id_category']))
               $currentCategoryId=intval($_GET['id_category']);
           else 
       $currentCategoryId=Product::getDefaultCategory(intval($_GET['id_product']));

           $rootCateg = new Category ($currentCategoryId, intval($params['cookie']->id_lang));
           while($rootCateg->id_parent != 1)  {   
        $rootCateg=new Category($rootCateg->id_parent); 
}
           $blockCategTree = $rootCateg->recurseLiteCategTree(intval(Configuration::get('BLOCK_CATEG_MAX_DEPTH')));
           $isDhtml = (Configuration::get('BLOCK_CATEG_DHTML') == 1 ? true : false);

              $smarty->assign('currentCategoryId', $currentCategoryId);

           $smarty->assign('blockCategTree', $blockCategTree);
           $smarty->assign('numCateg', $rootCateg->id_category);
           $smarty->assign('nameCateg', $nomCat);

           if (file_exists(_PS_THEME_DIR_.'modules/blockcategories/blockcategories.tpl'))
               $smarty->assign('branche_tpl_path', _PS_THEME_DIR_.'modules/blockcategories/category-tree-branch.tpl');
           else
               $smarty->assign('branche_tpl_path', _PS_MODULE_DIR_.'blockcategories/category-tree-branch.tpl');
           $smarty->assign('isDhtml', $isDhtml);

           /* /ONLY FOR THEME OLDER THAN v1.0 */
           return $this->display(__FILE__, 'blockcategories.tpl');            
       }
       else
       {
           return null;
   }
}
}

Link to comment
Share on other sites

Vediamo se mi date una dritta: con la modifica fatta nel file php che ho postato all'inizio il menu non si visualizza nella pagina "product" ma solo nella "category" . Che modifica posso fare per farla vedere anche là?
Grazie

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...