Archived topic
Weird content glitches
3 replies · Started by Hugo on December 27, 2021
Some of the words in my content are looking all messed up.
Look at the page and you'll see all these weird question marks.
OR
Apostrophes turn into the following ... ’
How do I fix? Font issue?
Hi Hugo,
This is a character encoding issue.
You can try opening your site's wp-config.php through FTP and change the line:
define('DB_CHARSET', 'utf8');
to
define('DB_CHARSET', 'utf-8');
or just completely comment out lines like this:
//define('DB_CHARSET', 'utf8');
//define('DB_COLLATE', '');
That fixed it,
Thanks Elvin.
No problem. :D