'Add new tag' button missing on taxonomy field

Created by Phil Kurth, Modified on Wed, 29 Jun 2022 at 03:25 PM by Phil Kurth

When using a taxonomy field with the Create Terms option enabled, you may notice the "add new tag" button/icon missing for certain users on the front end form. This is due to ACF requiring the current user to have the manage_terms capability relevant to the desired taxonomy. e.g; 


The core category taxonomy's manage_terms capability is manage_categories

get_taxonomy( 'category' )->cap->manage_terms; // 'manage_categories'


The core tag taxonomy's manage_terms capability is manage_post_tags:

get_taxonomy( 'post_tag' )->cap->manage_terms; // 'manage_post_tags'


If you need to modify the capabilities of a user role, you may consider using the User Role Editor plugin or something similar to do so.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article