Tagged: 

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #49573
    Lisa
    Participant

    I have followed the instructions (and watched the video) for the creation and display of a primary menu but it does not appear on the site. I tried changing the colors to see if that was an issue but it did not work. It was clearly chosen as the primary menu and the location was set, etc.

    If I create a secondary menu, that one shows up just fine, in the correct location for a secondary menu.

    Thanks for any help.

    Gregg

    #49593
    Sakin
    Keymaster

    @Lisa: Can you check the following:
    1. Have you Disable Header Right Sidebar from “Appearance => Theme Options => Header Options”. As Primary menu is supposed to display in Header Right Sidebar and if you have disable it then it will not show it.
    2. Have you added any widgets in Header Right Sidebar from “Appearance => Widgets”. If so then this widget will replace the menu and you need to add menu widgets to Header Right Sidebar.

    #49611
    Lisa
    Participant

    @Sakin: Thanks very much. That solved the problem. I do have another question though. Is it possible to move the secondary menu to just below the homepage slider image?

    Thanks!

    Gregg

    #49637
    Sakin
    Keymaster


    @Lisa
    : There no option to do that from Theme Options panel. This is high level of customization and required you to build child theme. So, read this http://catchthemes.com/blog/create-child-theme-wordpress/ and build child theme and then copy the following code in your child theme functions.php file.

    // Removing the Default Action Hook
    function unhook_catchkathmandu_functions() {
    	remove_action( 'catchkathmandu_before_main', 'catchkathmandu_slider_display', 10 );
    	remove_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_secondary_menu', 10 );
    }
    add_action( 'init', 'unhook_catchkathmandu_functions' );
    
    add_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_slider_display', 10 );
    add_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_secondary_menu', 15 );
    #49639
    Lisa
    Participant

    @Sakin:
    Thank you very much! I really appreciate your time and help (and very fast responses). This is the best help I have ever gotten on an online forum! If you are an employee of Catchthemes, I would be very happy to send a note to your supervisor (if you have one) to commend your work.

    #49640
    Sakin
    Keymaster

    @Lisa: I am the Founder/Lead developer of Catch Themes and thanks for your appreciation. You can help us back by providing good review and rating at our Catch Kathmandu them in WordPress theme repo https://wordpress.org/support/view/theme-reviews/catch-kathmandu

    #49641
    Lisa
    Participant

    @Sakin: I will do that now. Thanks again. When a novice (like me) is using a new system, the kind of support you have provided is incredibly valuable. I will definitely tell others about your company and service!

    #49642
    Sakin
    Keymaster

    @Lisa: Thanks for your appreciation and have a nice day. Cheers 🙂

    #125456
    kumararun
    Participant

    Hi, when i press Appearance -> Menus
    and select some menu, the menu structure itself is not visible to edit it. What to do?

    Thanks in advance

    #125495
    Pratik
    Keymaster

    Hi @kumararun,

    Please check for plugin conflicts. This is not a theme related issue. Check this post: https://catchthemes.com/wordpress-tutorials/how-to-check-for-plugin-conflicts-with-our-themes/ to find the culprit plugin.

    Regards,
    Pratik

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Primary Menu not showing up’ is closed to new replies.