• First I dont know from which thing I am facing problem. I have created a wordpress website and it was working fine. I have moved it later to justhost.com and then I have got this problem. Special characters are not supporting. This is a wordpress website. I dont know coding that much. Please help me.https://i.stack.imgur.com/2gr6B.png

Viewing 1 replies (of 1 total)
  • Check the header.php file from Appearance>Editor and find that UTF-8. The Code should look like this:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >

    If UTF-8 are on this tag then Open and edit your WordPress wp-config.php file. Then locate the following two lines:

    define(‘DB_CHARSET’, ‘utf8′);
    define(‘DB_COLLATE’, ”);

    You can simply delete these 2 lines away, or just remove the utf8 from the first line to make them looks like this:

    define(‘DB_CHARSET’, ”);
    define(‘DB_COLLATE’, ”);
Viewing 1 replies (of 1 total)
  • The topic ‘special characters not supporting in wordpress’ is closed to new replies.