• Resolved templederr

    (@celebtemple)


    Hi, I just instaled the plugin and everything looks great except meta description for the home page. Take a look at the screenshot: Screen shoot

    I need to write below: We show you the latest celebrity styles, fashion…etc

    If I add in code in the header, SEO sites detect as a duplicate title.

    Can you help me with this, only for the home page?

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Anh Tran

    (@rilwis)

    Hi @celebtemple ,

    Thanks for using Slim SEO.

    The plugin automatically creates meta title = site title – site description and meta description = site description for the homepage. It’s not a duplication for search engines.

    But if you want to customize the meta description for the homepage, please add this code to your theme’s functions.php file:

    add_filter( 'slim_seo_meta_description', function ( $description ) {
        if ( is_home() ) {
            $description = 'your custom description';
        }
        return $description;
    } );

    For details, please see this documentation.

    Thread Starter templederr

    (@celebtemple)

    Great, it’s working. Awesome plugin!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Same title tag and meta description?’ is closed to new replies.