• Resolved nfteam

    (@nfteam)


    Using version 3.1.2. Getting duplicate Page Titles <title></title> in header. I noticed that this issue should be fix on earlier version. I was thinking that ALL in one SEO plugin issue. Disabled SEO plug and still same issue.

    Looking for add_filter( ‘wp_title’, ‘maskitto_light_wp_title’, 10, 2 ); and try to comment out. But I can not find it in inc/extras.php

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Could you post your site url?

    Thread Starter nfteam

    (@nfteam)

    site is in testing mode on localhost. Any tips without looking in to code? I know it is hard but we are limited at this point.

    Theme Author shufflehound

    (@shufflehound)

    Hello,

    This issue is fixed in our latest theme version (3.1.7), therefore please update it.

    Thread Starter nfteam

    (@nfteam)

    Thank you for quick answer. Removing <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title> did the trick for me and is working with All in One SEO.

    I noticed that below code was added to 3.1.7 update, to make sure we have all pieces of code good I add it to our initialize.php file as well.

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

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Double/duplicate page title’ is closed to new replies.