Key Features
- Automatically generates titles and other meta tags on the page
- Manages custom meta tags from the backend
- Manages the robots meta tag in an easy way
- Sets a favicon from October's Mediafinder
- Manages Open Graph parameters
- Edits
.htaccess
without leaving the backend - Partially migrates from
Arcane.SEO
with a single click - Generates a
sitemap.xml
file automatically with parameters in URLs - Supports
RainLab.Pages
, - Provides an easy way to extend custom models for SEO parameters in the backend
- Uses Twig parameters to fill meta tags
- Plus numerous smaller features you will love :)
Using SEO Storm
Install the plugin and then add the SEO
component in site's head
section, whether it's a page or layout.
Go to Settings
-> SEO Storm
-> General settings
and configure to suit your needs.
Common use-cases
Global prefix/suffix in the page's title
- Go to
Settings
->SEO Storm
->General settings
and setEnable title and description meta tags
toon
. - Fill the
Site name
andSite name separator
fields. - Select if you want to have the
Site name
added to the beginning or to the end (prefix or suffix).
Automatically set the title of the page based on a model (such as a blog post)
The following instructions will work for any other field that is accessible from the page. The only thing you have to decide is the variable title you would like to set it by. In this example we'll use the Question
model which is featured on our page here.
Go to Editor
-> Pages
-> Select the page -> and click the SEO Storm
button. Complete the field using Twig syntax as shown in the screenshot below:
The same approach will work for most of the other parameters. See the Dynamic meta tags
section for more information.
Generating your sitemap.xml
Go to Settings
-> SEO Storm
-> General settings
and set Enable sitemap.xml
to On
.
That's basically everything you need. Just make sure that all the pages you want to be included in the sitemap.xml
have the Enable in sitemap.xml
option checked
If you want to handle more advanced customizations, see the Advanced sitemap.xml
section.
Dynamic meta tags
In many situations you'll want to have the meta attributes set dynamically based on the variables on the page. A typical example would be a blog post which uses the {{ post }}
variable. Using Dynamic meta tags
we can set the attributes based on such variables.
Tags that are currently using Twig syntax:
meta title
meta description
canonical URL
advanced robots
OG type
OG title
OG description
OG image
OG video
Twitter card
Twitter title
Twitter description
Twitter image
Fallback values
Keep in mind that you can basically fill those fields with anything that is accepted by Twig. This includes conditionals in the case of empty values. For example let's say you have a model that has two fields: name
and meta_title
. You want to set the title using the meta_title
field but if it's not present, you want SEO Storm to use name
instead. You can build the logic like this:
{{ model.seo_options.meta_title ?: model.name }}
Advanced sitemap.xml
You may want to fill parameters in you URLs based on the models in the page (e.g. a blog post's slug). To achieve that, you can set the following parameters in your page's settings:
- Model class
- Model params
- Model scope
In the following example we have the model Question
, but you may easily use Post
or any other value that this page is displaying.
Take a closer look at those two parameters:
- the class (e.g.
Author\Plugin\Models\ModelClass
) to themodel_class
field, and - model parameters that match the parameters in the URL (e.g.
slug:slug
).
The first one will say SEO Storm, which model it should use for this page to generate URLs in the sitemap. The second one is pairing between the URL parameter and model attribute (which match which).
Model params
As described above, the first parameter of the definition is the URL parameter while the second one is the corresponding model attribute.
For example:
post:slug
means we have apost
parameter in the URL andslug
attribute in the model.
If you want to add more attributes, split them by pipe character (|
). For example: date:date|slug:slug
.
You may want to create a URL such as /blog/:category/:postslug
. To achieve this we use the dot syntax to fetch the attribute from the related object, as this example demonstrates:
postslug:slug|category:categories.slug
This method will work for all relation types but if it's a "one to many" relationship, remember that only the first one will be used.
Model scopes
Sometimes you may want to filter the records listed in the sitemap.xml
. To do this define a scope in your model and provide its name in the third parameter. It will then be used by SEO Storm to filter the records. More about scopes here.
For Posts generated by the RainLab.Blog
you can use isPublished
to fetch the published ones only. Otherwise, all of the posts will be listed in the sitemap.xml
.
Open Graph & Twitter cards
You can set Open Graph and Twitter cards attributes using SEO Storm, as well. Keep in mind, that both are filled using OG
fields. (SEO Storm doesn't support using different content for each).
If you want to learn more about OG and Twitter cards take a look at the guide for Open Graph from Facebook and the guide for Twitter cards from Twitter.
Currently supported tags are:
og:title
defaults to page'smeta_title
ortitle
,og:description
defaults to page'smeta_description
, orsite_description
from theSettings
,og:image
defaults tosite_image
from theSettings
,og:type
defaults towebsite
,twitter:title
got fromog:title
,twitter:description
got fromog:description
,twitter:image
got fromog:image
.
Note: Please read the guidelines from Facebook and Twitter linked above for recommended values on these tags. Take a look at the Dynamic meta tags
section to see which of those support the Twig syntax.
Custom models with SEO parameters
SEO Storm lets you easily define the models to which you'd like to have SEO parameters dynamically attached.
You don't have to make any other customizations - SEO Storm takes care of extending the models and storing the attributes in the DB. We call such models
Stormed
. To register a model asStormed
implement aregisterStormedModels
method in your plugin's registration file (Plugin.php
).
Add the registerStormedModels()
method in your Plugin.php
file, for example:
public function registerStormedModels() { return [ '\Author\Plugin\Models\ExampleModel' => [ 'placement' => 'tabs', ], ]; }
Using this definition SEO Storm will take care of extending the model and form widgets in backend controllers. The above example will add SEO fields to the ExampleModel
as shown in the following example (the example uses our Question
model):
If you wish to customize the fields displayed in the backend you can use the excludeFields
attribute in the registration method. You may also use inverted syntax, so that all the fields are removed except the ones listed. See the example below:
public function registerStormedModels() { return [ '\Author\Plugin\Models\ExampleModel' => [ 'placement' => 'tabs', 'excludeFields' => [ 'model_class', 'model_scope', 'model_params', ], ], '\Author\Plugin\Models\ExampleModel2' => [ 'placement' => 'secondaryTabs', 'excludeFields' => [ '*', 'meta_title', 'meta_description', 'og_image', 'og_ref_image', 'og_title', 'og_description', ], ], ]; }
The following parameters are supported in the registerStormedModels
method:
placement
defines where the fields are going to be rendered. It's either:fields
,tabs
andsecondaryTabs
,prefix
defines the relation prefix to automatically add to the fields definition, by default it'sseo_options
(you have to know what you're doing before changing it, so please be careful)excludeFields
will exclude the fields from the form as described above
Note: By default, SEO Storm takes care of CMS pages
and Static pages
so you don't have to define them yourself.
Troubleshooting
Problem: Cards looking bad when pasting a link on social media
Reason: Open Graph is not enabled or it's configured improperly. See the guide for Open Graph from Facebook and the guide for Twitter cards from Twitter to get better understanding on the parameters.
Future plans/features
- Order
sitemap.xml
urls using models' priorities, - Take all SEO attributes of the models into consideration while generating
sitemap.xml
-
LordRazen
Found the plugin useful on 8 Nov, 2024
I use SeoStorm for Meta Information and the Social Media Preview stuff. Works fine so far. However, the robots.txt functions stopped working properly a while ago: If you call the robots.txt file, you see it, but for unkown reasons. Google cannot crawl it anymore properly which can have impact on your Ad Income if you use ads. So I stopped using it for Robots. However, for the other things, I can recommend it.
-
Sage
Found the plugin useful on 30 Jul, 2024
Very useful plugin, everything works on the latest version, the only thing missing is a multilingual sitemap
-
inIT author
Replied on 11 Sep, 2024
Hi Sage,
Thanks for your kind words. Good news is that we're currently working on multilingual sitemap. It will be available in SEO Storm v5.
Cheers
-
Kal Hoang
Found the plugin not useful on 14 May, 2024
Not working
-
inIT author
Replied on 14 May, 2024
Thanks for the review.
Could you specify what exactly doesn't work in your case?
-
Publipresse Médias
Found the plugin useful on 18 Nov, 2021
Excellent SEO plugin. Before now, we made our SEO manually cause october have some metas tags in core, and it's not a big deal to make them dynamic depending on model with small piece of code in the PHP tab. The only missing feature was the sitemap.xml generation because the rainlab module is a pain to use.
Now, with SEO Storm, we can manage all aspects of the website SEO, with a single module, in an intuitive and elegant interface. Congratulation to the inIT team !
-
inIT author
Replied on 19 Nov, 2021
Thanks for your kind words :)
We encourage you to take a look at the rest of our products and service.
-
Kuznetsov Semen
Found the plugin useful on 15 Nov, 2021
Excellent plugin, easily integrated into any model. Conveniently controlled. I am already preparing a translation into Russian.
-
inIT author
Replied on 19 Nov, 2021
Thanks for the review and the translation :)
-
4.9.0 |
Allow disabling global prefix/suffix for title. Solves issue !65 Sep 08, 2024 |
---|---|
4.8.4 |
Fix issue !82 - template_from_string Sep 07, 2024 |
4.8.3 |
Fix issue !49 - CMS_STRICT_VARIABLES=true Sep 07, 2024 |
4.8.2 |
Fix issue !90 - String Loader Twig extension Sep 07, 2024 |
4.8.1 |
Fix tests in October 3.6 Jun 04, 2024 |
4.8.0 |
Add robot_index and robot_follow as translatable fields May 17, 2024 |
4.7.0 |
Add Schema component Mar 07, 2023 |
4.6.1 |
Fix overwritten sitemap and the canonical tag is always added with the url of the current page Feb 02, 2023 |
4.6.0 |
Added compatibility with october 3.1 Oct 07, 2022 |
4.5.2 |
Fix purgeable with default array Jul 16, 2022 |
4.5.1 |
Fix problem with loading extensions after they already were initialized Jun 11, 2022 |
4.5.0 |
Add twig october extensions to templateFromString(can now be used in seo storm) and small fix canonical url Jun 01, 2022 |
4.4.3 |
Fix run 404 page May 30, 2022 |
4.4.2 |
Fix for old MYSQL May 30, 2022 |
4.4.1 |
Fix duplicate relation model in seo option table May 28, 2022 |
4.4.0 |
Add twitter:site, twitter:creator and fix OG:card Apr 09, 2022 |
4.3.0 |
Extend arcaneseo migrator by cms page and add method setSeoAttribute in seo component Mar 19, 2022 |
4.2.2 |
Update to October 2.2 Mar 03, 2022 |
4.2.1 |
Fix optional parameters #44 Mar 02, 2022 |
4.2.0 |
Add support for scope parameters and fix translatable fields in models Mar 02, 2022 |
4.1.1 |
Remove optional parameters from sitemap #41 Feb 17, 2022 |
4.1.0 |
Add translatable fields for CMS pages Feb 17, 2022 |
4.0.8 |
Fix excluding fields and deprecation message Feb 11, 2022 |
4.0.7 |
Canonical URL for static pages Feb 10, 2022 |
4.0.6 |
Fix colons Feb 10, 2022 |
4.0.5 |
Fix canonical URL default value Feb 10, 2022 |
4.0.4 |
Added Russian localization Nov 16, 2021 |
4.0.3 |
Fix sitemap after changing to camelCase Oct 26, 2021 |
4.0.2 |
Fix seo storm attribute Oct 25, 2021 |
4.0.1 |
Remove unneeded handler Oct 25, 2021 |
4.0.0 |
!!! Seo attributes changed to camelCase issue initbiz/seostorm-plugin!23 Oct 25, 2021 |
3.0.1 |
Fix bug with setting seo attributes Oct 17, 2021 |
3.0.0 |
!!! Dropped Schema and minify support. Provided full compatibility with October 2.0 Oct 08, 2021 |
2.0.0 |
!!! Deleted automatic RainLab.Blog handler Oct 08, 2021 |
1.0.0 |
First version of the plugin Oct 08, 2021 |
v4 -> v5
Favicon
If you used favicon_16
property from settings model, it was removed. You can define custom sizes in the settings now.
Sitemap
Sitemap generation now requires PHP 8.1 and October 3.1 (Multisite). Apart from that no breaking changes were introduced.