• On the version 1.1.0 of this theme that you see the title of the site is not displayed correctly.
    I found a solution to fix this problem:
    In the WordPress editor (In “Appearance” > “Editor”), open the following file header.php.
    In line 5, you have this default: <title><?php wp_title(''); ?></title>.
    Replace this with the following code:

    <title><?php bloginfo('name');
    	echo ' | ';
    	bloginfo('description'); ?></title>

    .
    And you find the title of your blog/website and the description of your blog/website works again.
    Hoping that this tip will help you.

  • The topic ‘Tip : Change the title tag on this theme’ is closed to new replies.