✔ Add Email Hiding Code
Completed by Marcus B.
- Assigned to
-
Marcus B.
- Notes
-
https://holyrosarycc.diocesanweb.org/
I have the option as training account (same privileges as parish users) to edit field groups on all three sites, Landing, Church, and School.
// Hide ACF cog shortcut if (!function_exists('hide_acf_cog')) { function hide_acf_cog() { echo '<style type="text/css">h2.hndle.ui-sortable-handle a.acf-hndle-cog, #editor .postbox .hndle .acf-handle-cog { display: none; visibility: hidden; }</style>'; } add_action('admin_head', 'hide_acf_cog'); }// Hide ACF cog shortcut if (!function_exists('hide_acf_cog')) { function hide_acf_cog() { echo '<style type="text/css">h2.hndle.ui-sortable-handle a.acf-hndle-cog, #editor .postbox .hndle .acf-handle-cog, #editor .postbox .handle-actions .acf-hndle-cog { display: none; visibility: hidden; }</style>'; } add_action('admin_head', 'hide_acf_cog'); }Basically just added a class. We had that happen before. I don't know if it's just a different ACF version.