Viewing 1 replies (of 1 total)
  • In the php file there is a line:

    if( $content!=” ){ $dom->loadHTML( $content ); } // Wrap in conditional to prevent loading empty dom

    you should parse encoding type before loading content like so:

    if( $content!=” ){ $dom->loadHTML( ‘<?xml encoding=”utf-8″?>’ . $content ); }

Viewing 1 replies (of 1 total)
  • The topic ‘Unnecessary text comes after activation of plugin’ is closed to new replies.