• Resolved Ario

    (@ariolander)


    I am the only user on my website. I trust me. If my main admin account is compromised I got bigger issues.

    Is there any way to disable the new security function and just run “acf/the_field/allow_unsafe_html” everywhere?

Viewing 1 replies (of 1 total)
  • Hi there!

    ACF Support Team here, Thanks for reaching out with your query we would be happy to assist

    You can use the filter below to allow HTML. Please note that using this filter in a setup where you don’t trust all users is not recommended.

    add_filter( 'acf/shortcode/allow_unsafe_html', function ( $allowed, $atts ) {
        return true;
    }, 10, 2 );

    If you need further clarification, please create a ticket using our ?support form and we can look into it further.

Viewing 1 replies (of 1 total)
  • The topic ‘Allow “Unsafe HTML” Everywhere’ is closed to new replies.