Support

Account

Home Forums ACF PRO Restrict editing on frontend Reply To: Restrict editing on frontend

  • Try wrapping your form in code like this:

    <?php if( current_user_can('edit_others_pages') ) {  ?> 
        // stuff here for user roles that can edit pages: editors and administrators
    <?php } ?>