RuletZ Posted March 23, 2009 Share Posted March 23, 2009 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 More sharing options...
vinoalvino Posted March 23, 2009 Share Posted March 23, 2009 Non so se ti può essere utile, ma ho sviluppato questo modulo che consente di visualizzare categorie in combobox. Link to comment Share on other sites More sharing options...
RuletZ Posted March 23, 2009 Author Share Posted March 23, 2009 Grazie per la segnalazione, lo stò già usando però messo in orizzontale. Però non è quello che cerco. Link to comment Share on other sites More sharing options...
RuletZ Posted March 29, 2009 Author Share Posted March 29, 2009 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now