From the list: Build ✔ Add ACF Hider Code Cody A. added this on Aug 18, 2020 Completed Aug 19, 2020 by Kyle S. Assigned to Kyle S. Comments & Events Kyle Sullivan, Web Development Cody , are you talking about hiding the ACF Cog icon? Aug 18, 2020 at 8:42 PM Notified 1 person Cody Armock, Web Content Specialist Yes Aug 19, 2020 at 11:59 AM Notified 1 person Kyle Sullivan, Web Development ACF changed the DOM structure for this, so the function for this needs to be changed to the following./** * Disable ACF cog shortcut. * * @return void */ if( ! function_exists( 'hide_acf_cog' ) ) { function hide_acf_cog() { echo '<style type="text/css"> h2.hndle.ui-sortable-handle ~ .handle-actions a.acf-hndle-cog { display: none; visibility: hidden; } </style>'; } add_action('admin_head', 'hide_acf_cog'); } Aug 19, 2020 at 1:38 PM Notified 1 person Kyle Sullivan completed this to-do. Aug 19, 2020 at 1:38 PM
Kyle Sullivan, Web Development Cody , are you talking about hiding the ACF Cog icon? Aug 18, 2020 at 8:42 PM Notified 1 person
Kyle Sullivan, Web Development ACF changed the DOM structure for this, so the function for this needs to be changed to the following./** * Disable ACF cog shortcut. * * @return void */ if( ! function_exists( 'hide_acf_cog' ) ) { function hide_acf_cog() { echo '<style type="text/css"> h2.hndle.ui-sortable-handle ~ .handle-actions a.acf-hndle-cog { display: none; visibility: hidden; } </style>'; } add_action('admin_head', 'hide_acf_cog'); } Aug 19, 2020 at 1:38 PM Notified 1 person
/** * Disable ACF cog shortcut. * * @return void */ if( ! function_exists( 'hide_acf_cog' ) ) { function hide_acf_cog() { echo '<style type="text/css"> h2.hndle.ui-sortable-handle ~ .handle-actions a.acf-hndle-cog { display: none; visibility: hidden; } </style>'; } add_action('admin_head', 'hide_acf_cog'); }