Support

Account

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!