What are the things that are most missed when coming from WordPress to CP?

Agreed. And now I see that the plugin does what I suspected. It doesn’t add any new functionality, but it provides a GUI for that functionality.

1 Like

I’ve enqueued the styles so that they only appear on ACF pages:

add_action('admin_enqueue_scripts', 'enqueue_acf_admin_styles');

function enqueue_acf_admin_styles() {
    // Ensure the styles are loaded only when ACF Pro is active
   if (class_exists('ACF')) {
        wp_enqueue_style(
            'acf-admin-fixes', // Handle for the stylesheet
            get_template_directory_uri() . '/assets/styles/acf-admin-fixes.css', // Update the path as necessary
            array(), // Dependencies, if any
            '1.0', // Version number
            'all' // Media type
        );
    }
}
1 Like

Even better!