Hello,
No problem, I haven’t been able to find a solution to this problem yet.
I hadn’t thought about what you’re saying about using “products” as the cpt name ?? … but, maybe an error could be occurring with the taxonomy declaration … maybe I’m missing something … could you help me checking it, please?
register_taxonomy(
'product_type',
'product',
array(
'labels' => array(
'name' => 'product Types',
'add_new_item' => 'Add Type',
'new_item_name' => "New Type"
),
'show_ui' => true,
'show_tagcloud' => false,
'hierarchical' => true,
'args' => array( 'orderby' => 'term_order' ),
'rewrite' => array( 'slug' => 'product-category', 'with_front' => false ),
'query_var' => false,
'capabilities' => array('manage_terms' => 'edit_pages')
)
);