Maccsta wrote:I guess that's a no then!
I guess you're impatient, young padawan!
There currently is no "SEO" plugin, s9y though has some plugins that offer similar functionalities. Like the html metatag plugin, the tagging plugin, sitemap plugin - and a lot is possible through template customization. Personally, I prefer using dedicated plugins for specific reasons, so that everyone can choose which portions he likes/needs, and independent plugins are actually easier to maintain.
Having said that, I do see the need for some improvements here. I am personally not very "invested" in SEO, so I would need precise things/ideas/code to implement them into the matching plugins.
a) Remove the main blog title being added to every post title
You can do that by editing your index.tpl template file, and simply change the variable of the <title> tag to match whatever you want. You could do something like:
Code: Select all
{if $view == 'entry'}{$entry.title}
{else}
{$head_title|@default:$blogTitle} {if $head_subtitle} - {$head_subtitle}{/if}
{/if}
$head_title is the title that is automatically created by s9y's core mechanics, but you can always bypass that with any custom logic you want.
Code: Select all
b) Remove meta data for each blog post, but leave it for the main page
For that, you should actually simply remove the metatags plugin for distinct blog entries, and put your meta-tags into the index.tpl template (or use a HTML Page nugget plugin to place content there).
I don't use the metatag plugin myself, but I belief this one also already has a setup option to specify default meta content for non-entry detail pages?
Regards,
Garvin