GetSimple Support Forum

Full Version: I18N Navigation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Dear All,

i need some help with the installation of the I18N plugins i do not understandt the installation of the I18N navigation plugin if i do what
i find on the developers website the result in the admin area are not
the same i can not see the navigation menue plugin.

Can anybody help me in this case ? What i like is a menu like this
which are installad on the get-simple.info webiste on top.

What i have to do to get the same results ? Only "dropdown"

br,
Harald
download, unpack,
http://get-simple.info/extend/plugin/i18n/69/

upload to your plugins directory
https://dl.dropboxusercontent.com/u/4998...i18n/1.jpg

enable it in plugins
https://dl.dropboxusercontent.com/u/4998...i18n/2.jpg

go to:
https://dl.dropboxusercontent.com/u/4998...i18n/3.jpg

use a drag and drop methood to change position of page
https://dl.dropboxusercontent.com/u/4998...i18n/4.jpg

save navigation structure..

to use it in template you must use in you template
get_i18n_navigation (to get menu)
like:

<?php get_i18n_navigation(return_page_slug(),0,10,I18N_SHOW_MENU) ?>

for a multilevel menu navigation (dropdown use a example):

in style.css input:

PHP Code:
sitemenu{
margin-top:-39px;    
font-weight:bold;
width960px
padding-left:30px;
}

 
#mainmenu, #mainmenu ul {list-style: none; margin-left: 0; padding: 0;padding-top:-3px;} 
  #mainmenu ul {width: 160px; margin-top:3px} 
  #mainmenu ul li {clear: both;} 
  #mainmenu > li {float: left; margin-right: 0px; padding-right:30px;position: relative; } 
  #mainmenu > li li {position: relative;} 
  #mainmenu > li ul {position: absolute; left: 0;} 
  #mainmenu > li ul li ul {position: absolute; left: 160px; top: 0px;} 
  
ul#mainmenu li ul {display: none;} 
  
ul#mainmenu li:hover > ul {display: block;} 
/*POZIOM 1*/ 
  #mainmenu {margin: 50px 50px; } 
  #mainmenu > li > a {padding: 5px; border-radius: 5px; text-align: center; text-decoration: none; color: #fff;} 
  #mainmenu > li:hover > a {background: #fff; color: #96c11f;} 
  #mainmenu > li.current > a{margin-top: -5px;padding-top:5px; padding-bottom:5px; border-radius: 5px; text-align: center; text-decoration: none; background: #fff; color:#96c11f !important;}
  /*POZIOMY NIŻSZE*/ 
  #mainmenu ul {font-size: 12px; border-radius: 3px; background: #eee;} 
  #mainmenu ul li > a {color: #000; display: block; padding: 5px; border-radius: 3px; text-decoration: none;} 
  #mainmenu ul li:hover > a {color: #fff; background: #96c11f;}
  #mainmenu ul > li.current > a{padding-bottom:5px; border-radius: 5px; text-decoration: none; background: #96c11f ; color:#fff !important;} 

and in template:


PHP Code:
<div class="sitemenu">
     <
i><ul id="mainmenu"> <?php get_i18n_navigation(return_page_slug(),0,10,I18N_SHOW_MENU)
        
         
?>
          
          </ul></i>
    </div> 

output menu:
front-end dropdown menu
https://dl.dropboxusercontent.com/u/4998...gation.jpg
Hi,
my site has a stucture as follows:
Home
subpage 1
subpage 2 ...
Next entry
subpage 1
subpage 2

When I klick on Next entry > subpage 1 everything is fine and the page title of the sub page is shown as headline.

But when I open Home > subpage 1 the page title doesn´t change to the title of subpage 1. It´s still the title of Home. Has anyone an idea how to solve this problem?
Thank you and so long
SoHo
Hi,
I deactivated I18 Navigation plugin for testing. And the problem was still there. All sub pages of Home (index.php) have no own page headline called with <?php get_page_title(); ?>.

So my question is in the wrong thread.

I choose an other one.

Thanx
SoHo