Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #25800
    Moellenkamp
    Participant

    I have activated secondary & footer menu in mobile devices. Before doing this I have translated the complete theme into german using the CodeStyling Localization-plugin generating a german mo-file. The displayed buttons/menu areas for the secondary & footer menu in mobile devices are still kept in english.

    In which way can I change the displayed “Menu” an “Footer Menu” into german language? All the rest ist translated yet!

    http://www.olaf-moellenkamp.de (unter construction!)

    #25826
    Sakin
    Keymaster

    @Moellenkamp: For this we don’t have translation option. We will work on this. I see that you are using Primary Menu and Footer menu. So, to change primary and footer menu label, just change the header in the following script and add it in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Footer” box.

    <script type="text/javascript">
    jQuery(window).load(function() {
    
      // Primary Menu
      jQuery('#access .menu').tinyNav({
    	active: 'current-menu-item',
    	header: 'Menu' 
      });
      
       // Footer Menu
      jQuery('#access-footer .menu').tinyNav({
    	active: 'current-menu-item',
    	header: 'Footer Menu'
      });  
    //Remove Old Primary Menu 
    jQuery( "#tinynav1" ).remove();
    //Remove Old Footer Menu
    jQuery( "#tinynav2" ).remove();  
    });
    </script>
    #25928
    Moellenkamp
    Participant

    Works too! Thx!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Translation of secondary & footer menu in mobile devices’ is closed to new replies.