Problems with Headspace Plugin? Guide to proper Headspace Configuration

| June 8, 2012 | Comments (4)

Headspace is an advanced SEO plugin for your WordPress blog. I have been using it for all my blogs for last 2-3 years and it is one the most important and must have WordPress plugin. Headspace is actually used to configure meta data like titles, tags, description etc for each of your blogs posts, pages, categories etc. The latest version even allows you to change the theme, add custom plugin, more CSS and JavaScript to specific posts. These are just the main features which are used the most. For complete features visit the Headspace Plugin Page.

Many users who install the plugin for the first time face problems with it due to its complexity. Some themes define its own methods for displaying page titles and this can mess everthing up. One thing you can do to make sure that page title is always displayed properly is check your theme header file. Open the Theme editor in WordPress interface and browse to header.php, and in that file look for code between <title> …… and </title> . Whatever the code is replace it with:

<?php wp_title(‘ ‘); ?>

This will make sure that proper title is displayed as per your headspace settings.

Header.php settings for Headspace

Another problem faced is duplicate title tags for Previous Posts pages from home page and category page. Like for all pages like http://techites.com/page/2, http://techites.com/page/3, etc the title will be same and count as duplicate in Google Webmaster Tools. The fix is easy. Open your headspace configuration and add the following code to the previous title of your homepage and category pages (or any other page where you want the title to be unique):

%%page%%

The code will be replaced with current page number like- page 2 of 3, page 3 of 3 etc.

Headspace Configuration

Another common problem is that wp_head is not called in header.php and Headspace cant insert its code into the page ay runtime. Make sure your theme header file contains code below just before the close of </head>:

<?php wp_head(); ?>

 

Category: How To's

About Aman: I am a PHP programmer, Wordpress enthusiast and part time blogger. I will post wordpress tutorials, programming articles and latest Web Tech news.

Comments (4)

Trackback URL | Comments RSS Feed

  1. Willy says:

    Hello Aman, thanks, very useful post.

    I keep having a problem though. I have been using HeadSpace2 for a few months now and Google keeps ignoring my “page description” setting. The page title works fine, but the page description is not working, and google results shows the begining of the post instead.

    Any idea what I am doing wrong?

    • Aman says:

      I don’t think it is a problem with the plugin. These days Google ignores the description tag many times and displays the content from the post instead.
      If your description tag is there in the page html source there is no need to worry.

  2. Aman says:

    I don’t think it is a problem with the plugin. These days Google ignores the description tag many times and displays the content from the post instead.
    If your description tag is there in the page html source there is no need to worry.

  3. Tskudz says:

    I installed headspace and had to remove it, However there are still elements of the plugin left over and I cannot edit any content. Whereas the plugin takes over the Default wizzywig. Any remedies out there?

Leave a Reply




If you want a picture to show with your comment, go get a Gravatar.