Highlight in documents breaks entrance animations
In some cases enabling Relevanssi in-document highlighting breaks pictures with entrance animations. You can add this function to your theme functions.php
to fix the problem.
add_filter( 'relevanssi_clean_excerpt', function( $content ) { if ( preg_match_all( '/data-settings="(.*?)"[ >]/', $content, $matches ) ) { $source = array(); $replace = array(); foreach ( $matches[1] as $match ) { $source[] = $match; $replace[] = str_replace( '"', '"', $match ); } $content = str_replace( $source, $replace, $content ); } return $content; } );