Holy Rosary - Detroit Lakes, MN

Add Email Hiding Code

Assigned to
Marcus Borger, Developer at Diocesan 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.

Comments & Events

Marcus Borger, Developer at Diocesan
Changed 
// 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');
}
to
// 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');
}
in the functions.php.

Basically just added a class. We had that happen before. I don't know if it's just a different ACF version.
Marcus Borger, Developer at Diocesan
Marcus Borger completed this to-do.