Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #51947
    Simon
    Participant

    Hi,

    How can i change/translate the menu names in the small/mobil version?

    English to German
    Menu –> Hauptmenü
    Secondary Menu –> Servicemenü
    Footer Menu –> Infomenü

    I didn’t found any options.

    Simon

    #51952
    Sakin
    Keymaster

    @Simon: Looks like there is localization of script missing. So, cannot be done with language file. You need to add the following code in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Footer” box:

    <script type="text/javascript">
    jQuery(window).load(function() {
    	jQuery("#access").html(function(i,t){
    	    return t.replace('Menu','Hauptmenü')
    	});
    	jQuery("#access-secondary").html(function(i,t){
    	    return t.replace('Secondary Menu','Servicemenü')
    	});
    	jQuery("#access-footer").html(function(i,t){
    	    return t.replace('Footer Menu','Infomenü')
    	});
    });
    </script>
    #52006
    Simon
    Participant

    thx

    #52099
    Simon
    Participant

    Hi Sakin,

    The change of the menu names works fine.
    BUT the menus don’t work anymore withe the script. (on the mobil phone)

    Thx for your help.

    Simon

    #52171
    Sakin
    Keymaster

    @Simon: Sorry then can you try this one instead:

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘manu name’ is closed to new replies.