GetSimple Support Forum

Full Version: I18N menue syntax help !!!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello all,

no i have working tree menue but i have another problem which i can not solved.

If i use standard entry of I18N menu navigation i get also the tree menu points inside my top menue. Can i restrict that i can show only
special menu points in the top menue like "Home, About us etc." ???

Which syntax of I18N

Code:
<?php get_navigation(return_page_slug()); ?>

i need ??

Code:
<?php get_navigation(return_page_slug(), 3, 5); ?>

does not work to show only entry 3 & 5.

Is there any solution to solve this problem ?

Hope anybody can help.

best regards,

Harald
i don't understand what You want..
the first option:
if You want not display a selected pages in menu.. try do it with visible option (link 1)
https://dl.dropboxusercontent.com/u/4998...sible2.jpg

the seccond option:
if You want to make visible menu from the 3 to 5 level use
<?php
get_i18n_navigation(return_page_slug(),2,4,I18N_SHOW_LANGUAGE);
?>

(menu is counting from 0 level...)
Hi,

thanks for the hint. I found solution now.

If i add only "3" menu points on level 0 and all other on level 1 & 2 i can show in my navigation menue only level 2 & 3 entrys.

so i can solve the problem. Second solution with the language are option but side only in one base language.

Harald