Home › Forums › Backend Issues (wp-admin) › "Custom Fields" doesn't appear in dashboard menu › Reply To: "Custom Fields" doesn't appear in dashboard menu
If I understand this correctly… In acf.php:
if( is_admin() && !ACF_LITE )
{
add_action(‘admin_menu’, array($this,’admin_menu’));
The function above hooks a function called “admin_menu”, which is further down the file.
function admin_menu()
{
add_utility_page(__(“Custom Fields”,’acf’), __(“Custom Fields”,’acf’), ‘manage_options’, ‘edit.php?post_type=acf’);
}
Is this what you’re looking for? Also, I double checked: my account role is Admin.
Although, the “/edit.php?post_type=acf” trick is just the workaround I need! Hopefully we can get to bottom of the missing menu button problem, though (if not for my sake, then for others’).
I appreciate all of your help!
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.