GetSimple Support Forum

Full Version: Get category
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Is there a way to get all the category and sub-category ?

Tx
plugin i18N
http://get-simple.info/extend/plugin/i18n/69/

in template use (you will get a navigation from level 0 to 99 lv):
<?php
get_i18n_navigation(return_page_slug(),0,99);
?>

if you want to get only a submenu named "oferta" where is a only visible active menu and submenu
<?php
get_i18n_navigation(return_page_slug('oferta'),0,99,I18N_FILTER_CURRENT );
?>
all menu and submenu from menu named "oferta"
if you want to get only a submenu named "oferta" where is a only visible active menu and submenu
<?php
get_i18n_navigation(return_page_slug('oferta'),0,99,I18N_SHOW_MENU);
?>

more here:
http://mvlcek.bplaced.net/get-simple/mul...avigation/