Home › Forums › Feature Requests › Remove Taxonomy Metabox › Reply To: Remove Taxonomy Metabox
Hi @dnavarrojr
I simply add this wordpress action to functions.php:
function my_remove_meta_boxes() {
remove_meta_box( 'branchdiv', 'workshop', 'side' );
remove_meta_box( 'tagsdiv-workshop_person', 'workshop', 'side' );
// etc..
}
add_action( 'admin_menu' , 'my_remove_meta_boxes' );
branchdiv is DOM id of meta box (just browse DOM)
workshop id my custom post type name (can by post, page etc…)
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.