188

Product support

Get help in the plugin support forum.

  • Added on Jun 3, 2020
  • Current version: 1.0.1
  • Platform Compatibility
    v3.x not tested
    v2.x not tested
    v1.x use latest
  • License: Regular / Extended
  • Created by

Categories

Master SEO an OctoberCMS Plugin

Supports RainLab.Blog, RainLab.StaticPage and Standard CMS Pages

Inject SEO fields to CMS Pages, Static Pages and Blog.

This plugin adds SEO fields to CMS Pages, Static Pages and Blog, and for using it you simply need to drop the component on layout/page.

Current fields:

  • Meta Title
  • Meta Description
  • Meta Keywords
  • Canonical URL
  • Meta Redirect to other URL
  • Robot Index & Follow
  • Features
  • Open Graph Tags added for better social sharing. Includes preview images for blog featured images.
  • Configure meta and Open Graph tags in the backend
  • Future Development
  • Integration of SEO optimizer to optimize pages

Installation

To install this plugin you have to click on add to project or need to type Dreainno.MasterSEO in Backend go to the System > updates > install plugin and enter the plugin name it will appear there and click on name to install a plugin

The plugin currently includes three components:

  • SEO CMS Page
  • SEO Blog Post
  • SEO Static Page

SEO CMS Page

Put the component in the CMS Layout

<html>
        <head>
            {% component 'SeoCmsPage' %}
        </head>
        <body>
           {% page %}
        </body>
    </html>

SEO Blog Post

Put the component in the page with the blogPost component and pass the post as a parameter

{% component 'blogPost' %}
    {% component 'SeoBlogPost' data=post %}

You must place also SeoCMSPage component on layout to work with this plugin

SEO Static Page

Put the component in the head of the Static Pages Layout

<html>
        <head>
            {% component 'SeoStaticPage' %}
        </head>
        <body>
            {% component 'staticMenu' %}
            {% component 'staticBreadcrumbs' %}
            {% page %}
        </body>
    </html>

Configuration

To configure this Plugin goto Backend System then find My Settings in left side bar, then click on Master SEO Extension

1.0.1

Initialize plugin.

May 30, 2020