Nigel,
from BB
We added a filter way back in version 1.10 for filtering the $args passed to register_taxonomy() its called fl_builder_register_template_category_args.
Simon
which I read as - user problem - IMO this is a BB issue and it should not require a filter to fix it.
so anyway thanks for you help
---
ref.
hidden link
---
fl_builder_register_template_category_args extensions/fl-builder-user-templates/classes/class-fl-builder-user-templates-post-type.php
Line: 85 $args = apply_filters( 'fl_builder_register_template_category_args', array(
----
and wrote a quick and dirty filter which works then asked BB support Simon what it effects,
function ii_fl_builder_register_template_category_args_filter( $iirray ) {
$iirray = array(
'labels' => array(
'name' => _x( 'bbCategories', 'Custom taxonomy label.', 'fl-builder' ),
'singular_name' => _x( 'bbCategory', 'Custom taxonomy label.', 'fl-builder' ),
'search_items' => _x( 'Search bbCategories', 'Custom taxonomy label.', 'fl-builder' ),
'all_items' => _x( 'All bbCategories', 'Custom taxonomy label.', 'fl-builder' ),
'parent_item' => _x( 'Parent bbCategory', 'Custom taxonomy label.', 'fl-builder' ),
'parent_item_colon' => _x( 'Parent bbCategory:', 'Custom taxonomy label.', 'fl-builder' ),
'edit_item' => _x( 'Edit bbCategory', 'Custom taxonomy label.', 'fl-builder' ),
'update_item' => _x( 'Update bbCategory', 'Custom taxonomy label.', 'fl-builder' ),
'add_new_item' => _x( 'Add New bbCategory', 'Custom taxonomy label.', 'fl-builder' ),
'new_item_name' => _x( 'New bbCategory Name', 'Custom taxonomy label.', 'fl-builder' ),
'menu_name' => _x( 'bbCategories', 'Custom taxonomy label.', 'fl-builder' ),
),
);
return $iirray;
}
add_filter( 'fl_builder_register_template_category_args', 'ii_fl_builder_register_template_category_args_filter', 10, 1 );
I will close this after submitting