When your plugin only is activated, my menus are perfectly working, I mean the div and the ul are filled. When I activate both plugins, I just get the following:
<div class="menu-english-menu-container"><ul id="menu-english-menu" class="menu"></ul></div>
Yes that’s what I mean exactly.
This is how it’s registered:
$labels = array(
'name' => _x('Projects', 'post type general name', 'vd'),
'singular_name' => _x('Project', 'post type singular name', 'vd'),
'add_new' => _x('Add New', 'Project', 'vd'),
'add_new_item' => __('Add New Project', 'vd'),
'edit_item' => __('Edit Project', 'vd'),
'new_item' => __('New Project', 'vd'),
'all_items' => __('All Projects', 'vd'),
'view_item' => __('View Project', 'vd'),
'search_items' => __('Search Projects', 'vd'),
'not_found' => __('No Projects found', 'vd'),
'not_found_in_trash' => __('No Projects found in Trash', 'vd'),
'parent_item_colon' => '',
'menu_name' => 'Projects'
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields' ),
'taxonomies' => array('category')
);
register_post_type('project', $args);
The only difference with the other one working is the last two lines, like this in the other working:
'supports' => array( 'title', 'thumbnail', 'custom-fields' )
(no taxonomy)
Hope it helps!
Cheers,