On this page
Disable ACF HTML Escaping
Disable ACF HTML EscapingAuto updates to lates ACF breaks fields that include script of iframe tags, emergency quick fix is the below in the theme functions.php
We need a better / safe way per template / field though
//Globally disable ACF unsage html escaping temnporarillyadd_filter( 'acf/the_field/allow_unsafe_html', function( $allowed, $selector ) { return true; return $allowed;}, 10, 2);