Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #103930
    Kranz
    Participant

    Hi there,
    I have a questition regarding the menues of the kathmandu pro theme:
    I have a multisite and two sites with two languages: DE and JP. On every site is a primary and a secondary menue. The function of the primary is switching between the DE and JP, the secondary is the normal navigation menue on the site. Now the problem is on the mobile screen: When you click in the secondray menue on a site (not home), in the primary menue the name change from DE or JP to Menue (german: MENÜ). This is disorientating. I need to see there only DE or JP and nothing else. Do you have a idea what thing is wrong?
    Thanks a lot! Kind regards, chris.

    #103951
    Pratik
    Participant

    Hi Chris,

    Can I view your site? Please send me the site url. Also the plugin you have used for multi language.

    Regards,
    Pratik

    #104077
    Kranz
    Participant

    Hi Pratik,

    the site is: http://japandesk.fischer-hrm.de/jp/ and the password is: Naruto_Gaiden

    I don’t need a plugin for multi-language. I only use the primary menue for switching between the languages.

    Thanks!

    Chris

    #104082
    Pratik
    Participant

    Hi @Kranz.

    I checked your site and the site is showing only two items in primary menu. JP(会社沿革, I am assuming) and DE. Am i missing something?

    Regards,
    Pratik

    #104098
    Kranz
    Participant

    Hi Pratik,
    no, that is correct. You see 会社沿革 and DE. Both on a display and on the mobile. So if you click on one site in the secondary menue (not home) on the mobile, you will see in the primary menue no more 会社沿革 and DE but MENÜ (which means menue). Is it possible that the 会社沿革 and DE remains? This issue is only on the mobile..
    Thanks!
    Chris.

    #104123
    Pratik
    Participant

    Hi @Kranz,
    To remove the Menu, you need to make customizations via child theme. However, if you remove menu, it will take the show the first element when in any site(DE/JP).

    First, create a child theme. Details about child theme is here: http://catchthemes.com/blog/create-child-theme-wordpress/

    Then in the child theme’s functions.php file, add following code:

    
    /**
    * Remove default navigation menu to nav menu
    * Used while viewing on smaller screen
    */
    function catchkathmandu_menu_alter( $items, $args ) {
    	return $items;
    }
    endif; // catchkathmandu_menu_alter
    

    Regards,
    Pratik

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘menues of the kathmandu pro theme’ is closed to new replies.