Hello,
Thanks for the report. In fact, I forgot to implement this setting in the Dynamic Taxonomy module. I will add it in the next patch (0.8). It’s not quite ready yet, in the meantime here is a code you add in your functions.php
file:
add_filter('register_taxonomy_args', 'acfe_my_taxonomy_args', 10, 3);
function acfe_my_taxonomy_args($args, $taxonomy, $object_type){
// Target my-taxonomy
if($taxonomy !== 'my-taxonomy')
return $args;
$args['meta_box_cb'] = false;
return $args;
}
In this example, the taxonomy my-taxonomy
is being targeted. I will let you know as soon as the patch is up with the fix 🙂
Sorry for the inconvenience.
Regards.
Hello,
Just to let you know that the latest ACF Extended 0.8 now includes this option in the Dynamic Taxonomy UI 🙂
Have a nice day!
Regards.
Which page is it on in the admin – I must be going blind
Hello,
In Tools > Taxonomies, choose your taxonomy. In the main “General” tab, scroll down to “Meta box callback”. See screenshot: https://i.imgur.com/PWvsxFR.png
Regards.
Awesome – I should have just played with the settings, I thought it was that but wasn’t sure – page looks lovely and neat now
Awesome!
By the way, if you enjoy this plugin, feel free to add a review, it always helps 🙂
Have a nice day!
Regards.