same here with wysiwyg as a subfield in a flexible content layout. (plugin version 1.7.2, ACF 6.0.7, WP 6.0.7 in “classic mode”).
choose a slight variation of fixes proposed above (in functions.php) that makes things work.
if ( class_exists( 'epiphyt\Embed_Privacy\Embed_Privacy' ) ) {
add_filter( 'acf_the_content', function($content) {
return epiphyt\Embed_Privacy\Embed_Privacy::get_instance()->replace_embeds($content);
}, 10, 2 );
}
seems still to be an issue in 5.11.
taxonomy registration arguments can be filtered and doing so works around:
function bsos_gutenberg_categories_fix($args) {
$args['show_in_rest'] = true;
return $args;
}
add_filter('em_ct_categories','bsos_gutenberg_categories_fix');