Platinum SEO wordpress plugin, FAQs
If this FAQ page does not answer your question, before you post a comment, please consider:
- What exactly is not working? The meta tags are not in the source? The page is completely blank? Please be as specific as possible.
- What is your PHP error log saying?
- Please specify the versions you are using: PHP, Wordpress, Platinum SEO Pack.
You are ofcourse free to leave appreciatory remarks and valid suggestions.Let us move on to the FAQs folks…
FAQs:
Does it work with Wordpress 2.3.x?
Yes it does work with earlier versions and it ofcourse works with wordpress 2.5.1. I always recommend you to update your wordpress blog to the latest version.There is no harm in upgrading.Wordpress is free buddy
The plugin doesn’t seem to be working…
Test it with the default wordpress theme. If it works there, your theme is missing the appropriate call to wp_head() usually found in header.php. Please patch it, taking it from the default theme.If you don’t know how to do this, the following steps might work. Do them on your own risk:
- In your admin panel, go to Plugins – Theme Editor
- On the right bar, click on Header
- Locate the line with </head>
- Insert the following link before it:
<?php wp_head(); ?> - Save
If it still does not work, then your theme needs scrutiny. You can leave a comment on this page for any plugin issues, but please specify what exactly isn’t working, your WP version and if possible your PHP version.
After activating Platinum SEO Plugin I see two sets of meta tags
Disable All in One SEO Pack and enable Platinum SEO. This plugin gives you all the functionalities of All in One SEO Pack as it is, and gives you more cool options. Also ensure to edit your theme and remove whatever static meta descriptions and/or meta keywords you have in there. If it’s not your theme, you are probably using another plugin that is generating them. Disable that as well.
My URLs don’t get rewritten
Platinum SEO Pack doesn’t handle this, it’s already done by Wordpress itself. Visit Options – Permalinks to set it up. However Platinum SEO Pack gives you the option to rewrite titles.
How to get help on Platinum SEO options?
For help on any of the options, just click the option header.See pic. below:

How often will this be released?
A new release will be made only for bug fixes and for new features that may be essential from an SEO perspective.If you have any suggestion, do ping me.I will consider to implement them, only if you can convince me.
Fatal error: Allowed memory size of 8388608 bytes exhausted…What is that??
Platinum SEO, like its predecessor – All In One SEO, uses output buffering to rewrite the titles, for this to works it needs memory. There’s no way to optimize that much more, and on most hosting setups it just works which leads me to the conclusion that there are some companies who are just skimpy with memory. If the above error appears on admin pages, it’s not even output buffering related. I’d recommend switching to a host that can provide sufficient memory or disabling some plugins.
Home page title gets rewritten by category in my theme. How to resolve this?
Many magazine themes use multiple loops (wordpress loop) on their home page. If your Home page uses a custom query or multiple loops, make sure you use WP_Query for those calls. If your code uses query_posts then wordpress gets confused and thinks it is on the Category page for the last post it selected instead of on the home page. As a result Platinum SEO includes a category title instead of the home page title. Hen for your home page template use WP_Query so that Platinum SEO outputs the correct Title on the home page.
Example code for WP using WP_Query:
$myquery = new WP_Query(’showposts=5′);
while ($myquery->have_posts()) : $myquery->the_post();
the_title();
endwhile;
If you have a premium theme, request your theme designer for support and ask him to use wp_query instead of query_posts. Refer him the “Important Note” on wordpress Codex Page for query_posts() here – http://codex.wordpress.org/Template_Tags/query_posts
Filed under: Wordpress SEO & Plugins


Hi,
how can I get meta tag key words on catatgories
When this is implemented, does it affect archived posts as well? Or just posts that are made from now on?
hi, how to put meta title, description, keywords in the categories and sub-categories?
For categories and sub categories, you cannot have keywords meta tag. Title meta tag is taken care automatically.For description, give the category descrition in your wordpress admin where you define categories and subcategories i.e. Posts–>Categories in WP 2.7.
Hi,
Does this work on wordpress MU?
A
I really like Platinum SEO. however, when it is activate, it causes my entire web site to disappear in browsers. When it is deactivated the site reacppears. I tried removing it and reinstalling it and the same thing happened. Are there any plugins that are incompatible with it? can you provide any advice?
Thank
Platinum SEO plugin often cause my index page or my catagory page become blank page.
I use WP 2.7, how do I solve it?
test it with wordpress default themes. If it works there, then it has got to do with your wordpress theme.
but I could see them working properly on the site that you have linked here.
The tool is great. It works perfectly…Just a question – I have problems with 404 Errordocument…. – I would like that all non-existing pages are forwarded to http://trixi.com/barcelona – below you can see my .htaccess
But .htaccess does ignore my Errordocument and brings just out the 404.php which is in my theme folder…how to change it? Any help would be great….
Here is my .htaccess:
ErrorDocument 404 http://trixi.com/barcelona/
# BEGIN WordPress
RewriteEngine On
RewriteBase /barcelona/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /barcelona/index.php [L]
# END WordPress
Everything works fine except title tag gets duplicated across the whole site. The title tag for my top page (1st page in ‘page’ list in admin) is repeated throughout the site, description and keywords change but not title tag. Problem goes away once I uncheck “rewrite title tag” but that defeats the purpose of the plug-in. Any ideas?
Great work on this. It fixed the problems I was having with AIOSEO not showing anything.