Reply To: Aspire & Genesis Simple Menus

Homepage Community Forums Aspire Theme Support Aspire & Genesis Simple Menus Reply To: Aspire & Genesis Simple Menus

#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.