Skip Navigation

Resolved

Reported for: WPML Multilingual CMS 4.4.12

Resolved in: 4.5.3

Overview of the issue

If you are working on a live site and you add a raw HTML block or a HTML widget, that content will be removed just after you translate it using our  Advanced Translation Editor (ATE).

Workaround

Please, be sure to make a full backup of your site before proceeding.

  • Open your functions.php file and add the following code:
    add_filter( 'wpml_pb_get_media_updaters', function(  $updaters ) {
        kses_remove_filters();
        return $updaters;
    } );