Support

Account

Home Forums General Issues How I can fix problem with ACF WP Redactor? Reply To: How I can fix problem with ACF WP Redactor?

  • Hi @avearthasz

    You would need to add a function to the theme’s function file, something like:

    add_filter( 'post_thumbnail_html', 'remove_media_attributes', 10 );
    add_filter( 'image_send_to_editor', 'remove_media_attributes', 10 );
    
    function remove_media_attributes( $html ) {
       $html = preg_replace( '/(width|height|class)="\d*"\s/', "", $html );
       return $html;
    }

    Code untested!