Your cart is currently empty!
Follow up to support request 2 days ago
—
by
Hi there,
Just wanted to follow up on the request I submitted a couple of days ago. I created custom taxonomies using the standard WordPress method:
add_action( 'init', 'register_taxonomy_roles' );
function register_taxonomy_roles() {
$labels = array(
'name' => _x( 'Roles', 'roles' ),
'singular_name' => _x( 'Role', 'roles' ),
'search_items' => _x( 'Search Roles', 'roles' ),
'popular_items' => _x( 'Popular Roles', 'roles' ),
'all_items' => _x( 'All Roles', 'roles' ),
'parent_item' => _x( 'Parent Role', 'roles' ),
'parent_item_colon' => _x( 'Parent Role:', 'roles' ),
'edit_item' => _x( 'Edit Role', 'roles' ),
'update_item' => _x( 'Update Role', 'roles' ),
'add_new_item' => _x( 'Add New Role', 'roles' ),
'new_item_name' => _x( 'New Role', 'roles' ),
'separate_items_with_commas' => _x( 'Separate roles with commas', 'roles' ),
'add_or_remove_items' => _x( 'Add or remove Roles', 'roles' ),
'choose_from_most_used' => _x( 'Choose from most used Roles', 'roles' ),
'menu_name' => _x( 'Roles', 'roles' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'show_in_nav_menus' => true,
'show_ui' => true,
'show_tagcloud' => true,
'show_admin_column' => false,
'hierarchical' => false,
'rewrite' => true,
'query_var' => true
);
register_taxonomy( 'roles', array('post'), $args );
}
In the “Groups Restrict Categories” settings I checked all taxonomies (my custom “Roles” taxonomy appears in the list and is checked). When I go to the taxonomy, though, none of the “Groups Restrict Categories” fields appear. They do appear in the standard Tags and Categories taxonomies though. If I then uncheck Tags and Categories settings, the “Groups Restrict Categories” fields still appear in Tags and Categories. So it seems the settings are being saved but ignored.
Can you please reply ASAP? I’ve got a client waiting on this work.
Thanks,
Ken
Comments
One response to “Follow up to support request 2 days ago”
Followed up here.