Aspire & Genesis Simple Menus

Homepage Community Forums Aspire Theme Support Aspire & Genesis Simple Menus

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #18528
    houseofhands
    Customer

      Hello Appfinite,

      The Genesis Simple Menus plugin (https://wordpress.org/plugins/genesis-simple-menus/) does not work with the Aspire Theme. All other Genesis child theme show a Secondary Navigation option … only Aspire Theme does not.

      Can any of the developers take a look at this?

      Thanks in advance!

      Kind Regards,
      Brian

      #18559
      kronos
      Customer

        The secondary navigation is removed by default in the functions file –

        //* Unregister secondary navigation menu
        add_theme_support( 'genesis-menus', array( 'primary' => __( 'Primary Navigation Menu', 'genesis' ) ) );

        So you can add it back by removing or commenting out that code above. You may also have to create some CSS styling to get it to look however you want it to.

        #18582
        houseofhands
        Customer

          Thanks for your reply, Kronos … but removing or commenting out the code mentioned does not display the Genesis Simple Menus meta box on the edit page.

          Here’s a part of the Genesis Simple Menus code, which is being blocked by the Aspire Theme:

          	function admin_menu() {
          
          		foreach( (array) get_post_types( array( 'public' => true ) ) as $type ) {
          
          			if( $type == 'post' || $type == 'page' || post_type_supports( $type, 'genesis-simple-menus' ) )
          				add_meta_box( $this->handle, __( 'Secondary Navigation', 'genesis-simple-menus' ), array( $this, 'metabox' ), $type, 'side', 'low' );
          
          		}
          	}

          I will do some more troubleshooting and get back if (when) I find something.

          #18623
          Wes
          Moderator

            I haven’t used that plugin before at the moment, so I’m unfamiliar with how it works. Please let us know if it works with your setup or not. I’m more than willing to figure out what the issue may be.

            If anyone else knows what’s going on, please let us know!!!

            Thanks!

          Viewing 4 posts - 1 through 4 (of 4 total)
          • You must be logged in to reply to this topic.