• shardach

    (@shardach)


    Hello,

    The theme is cool, but I can’t solve one problem – doubled title at main page. It’s look like ‘Site Name – DescriptionSite Name – Description’. No SEO plug-ins are installed.

    I tried to delete from header.php

    <?php
    if ( ! function_exists( ‘_wp_render_title_tag’ ) ) :
    function icraft_render_title() {
    ?>
    <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
    <?php
    }
    add_action( ‘wp_head’, ‘icraft_render_title’ );
    endif;
    ?>

    But the title is still doubled.

    Could you help me with the problem.

    Thanks.

Viewing 15 replies - 1 through 15 (of 15 total)
  • Theme Author marsian

    (@marsian)

    Could you please post the url

    Thread Starter shardach

    (@shardach)

    Hello, I’ve got the same problem and I also cannot solve this on my own.
    The title of my site is doubled since I’ve installed it, I’m lloking for the bug in header.php but with no success.

    Checked in Firebug it looks like this:

    <title>
    TitleTitle
    </title>

    and so it is <title><?php wp_title( '|', true, 'right' ); ?></title> in my header.php.

    The whole code in <head> is the same as Shardach wrote.

    Could you please help me?

    Theme Author marsian

    (@marsian)

    What version of WordPress are you using? there are some changes in title related codes since version 4.1

    https://codex.wordpress.org/Title_Tag

    pre 4.1 we had add the code in templates.
    post 4.1 no code in template required.

    since you tried removing the code and still you see two titles, i would guess you are using post 4.1 version.

    Try changing the theme with “twenty fifteen”(latest core theme). and let me know if you see same title or not.

    I have the newest version, updated just a few days ago.

    I’ve got for now about ten sites on WP 4.2.1 with different themes installed and I have this problem only with I-Craft.
    So I think the issue is unfortunately in the theme. I installed your theme about one week ago and as I remember in the previous theme (Ares) there was no problem like that.

    Following the Codex, I tried to delete this code

    <?php
    if ( ! function_exists( '_wp_render_title_tag' ) ) {
    	function theme_slug_render_title() {
    ?>
    <title><?php wp_title( '|', true, 'right' ); ?></title>
    <?php
    	}
    	add_action( 'wp_head', 'theme_slug_render_title' );
    }
    ?>

    and instead add the new one:

    <?php
    add_theme_support( 'title-tag' );
    ?>

    but nothing changes.

    This new code works well, but doubled titles stays the same.

    The title is doubled only on the title bar in the browser (every browser the same), not in the site branding or anywhere the title on site appears.

    I’m sorry for three posts in a row.

    Theme Author marsian

    (@marsian)

    not a problem, could you find out what is the second title in your admin panel?

    Theme Author marsian

    (@marsian)

    Are you guys using Any SEO plugin.

    “what is the second title in your admin panel”

    I’m not quite sure which title do you mean.
    In the admin panel everything looks OK, the same way as in any other theme. The only place where the bug appears is the title bar in a browser.

    I tried making a few changes in section <head> (deleting section’s code totally and partially) and every modification did in here caused inaccessibility of my site.

    I can tell that site title isn’t doubled when using admin panel – then the title bar is not doubled. It’s given twice only at the frontend.

    I’m still looking for the problem in header.php and following files, but for now still with no success.

    This site does not use any SEO plugin.

    Thread Starter shardach

    (@shardach)

    Try changing the theme with “twenty fifteen”(latest core theme). and let me know if you see same title or not

    At twenty fifteen all working fine.

    not a problem, could you find out what is the second title in your admin panel?

    Second title not set.

    Are you guys using Any SEO plugin.

    Only WP core plus your theme.

    Theme Author marsian

    (@marsian)

    i found the issue. it is functions.php, will remove the function “icraft_wp_title” in next version. this function creating the second title

    brilliant!
    it does work!!!

    thank you very much, I wouldn’t have it done without your help

    Thread Starter shardach

    (@shardach)

    i found the issue. it is functions.php, will remove the function “icraft_wp_title” in next version. this function creating the second title

    Thanks! I commented function and line add_filter after it – all works.

    Hello,
    My product title is showing in the header with red color.Thats fine
    But I also want to display title before price in product summary page.

    Please let me know how to do.

    Thanks

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Doubled title at i-craft theme’ is closed to new replies.