Home › Forums › General Issues › Setting Field group wrapper/metabox colours › Reply To: Setting Field group wrapper/metabox colours
Hi @cocomitte
Thanks for the post.
It is possible to enqueue some custom styles for the acf admin panel through the use of the acf/admin/enqueue_admin_scripts action like so:
function my_acf_admin_enqueue_scripts() {
// register style
wp_register_style( 'my-acf-input-css', get_stylesheet_directory_uri() . '/css/my-acf-input.css', false, '1.0.0' );
wp_enqueue_style( 'my-acf-input-css' );
// register script
wp_register_script( 'my-acf-input-js', get_stylesheet_directory_uri() . '/js/my-acf-input.js', false, '1.0.0');
wp_enqueue_script( 'my-acf-input-js' );
}
add_action( 'acf/input/admin_enqueue_scripts', 'my_acf_admin_enqueue_scripts' );
You would first need to create the custom stylesheet and then call the action in your theme.
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!
Are you building WordPress sites with ACF and @BeaverBuilder, and wanted to use your ACF Blocks in both the block editor and Beaver Builder?
— Advanced Custom Fields (@wp_acf) May 10, 2023
The BB team recently added support for using ACF Blocks in Beaver Builder. Check it out 👇https://t.co/UalEIa5aQi
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.