• Resolved NickJam

    (@nickjam)


    Advanced Custom Fields Extended is activated in subsite of a multisite network. It is conflicting with the network’s user editor. The update button disappears. When the plugin is deactivated the problem is no long there.

Viewing 1 replies (of 1 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the feedback. If you’re talking about the “Update” button from the ACF Extended Dynamic Forms module, then it’s due to non super-admin roles in multisites which don’t have the unfiltered_html capability.

    This capability allow HTML input save. Here is a hook that will allow administrators (but not super-admin) of your multisite have the correct permission:

    add_filter('acf/allow_unfiltered_html', 'my_acf_unfiltered_html');
    function my_acf_unfiltered_html($unfiltered){
        
        if(current_user_can('administrator')){
            
            $unfiltered = true;
            
        }
        
        return $unfiltered;
        
    }
    

    More details in this discussion: https://www.ads-software.com/support/topic/submit-button-html-disappears-after-save/#post-12804836

    Hope it helps!

    Regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Advanced Custom Fields Extended Plugin is Conflicting with WP User editor’ is closed to new replies.