Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Hector Cabrera

    (@hcabrera)

    Hi there,

    I-m very sorry for the late reply, I’ve been terribly busy these past weeks.

    Could you please try the newest beta version of the plugin and let me know if it fixes the encoding problem properly?

    I ran into the same problem, it seemed to be fixed by adding the charset to wordpress-popular-posts.php:

    if ( in_array("{excerpt}", $matches[0]) ) {
    				$string = str_replace( "{excerpt}", htmlentities($data['summary'], ENT_QUOTES, $this->charset), $string );
    			}
    
    			if ( in_array("{summary}", $matches[0]) ) {
    				$string = str_replace( "{summary}", htmlentities($data['summary'], ENT_QUOTES, $this->charset), $string );
    			}

    I then tried the last version from GitHub and the problem has disappeared here as well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘excerpt characters corrupted’ is closed to new replies.