Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #59773
    Kaydev
    Member

    How can I move my Secondary Menu above the Featured Slider?
    My site is here: http://www.fhastronomy.org

    #59788
    Sakin
    Keymaster

    @Kaydev: There is no option to move secondary menu above the Featured Slider. For that you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file.

    function fullframe_unhook_functions() {
    	remove_action( 'fullframe_before_content', 'fullframe_secondary_menu', 20 );
    }
    add_action( 'init', 'fullframe_unhook_functions' );
    
    add_action( 'fullframe_before_content', 'fullframe_secondary_menu', 5 );
    #59824
    Kaydev
    Member

    Is there a way to copy over all the theme settings to the child theme?

    #59963
    Sakin
    Keymaster

    @Kaydev: Your settings will be automatically there in child theme. You might just need to reassign menu if you are using custom menus.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Move Secondary Menu Above Featured Slider’ is closed to new replies.