Skip to main content

SEO optimizations plugin for Plone

Project description

kitconcept.seo

https://travis-ci.org/kitconcept/kitconcept.seo.svg?branch=master Egg Status Latest Version License

kitconcept

SEO enhancements for the Plone Content Management System. Please note that kitconcept.seo is an add-on product for Volto, the React-based frontend for Plone that will become Plone 6. If you are looking for a full featured SEO solution for Plone 4, we suggest looking into fourdigits.seo.

Features

  • Allows to override meta title and meta description per page

  • Allows to set the noindex header to exclude pages from being indexed

  • Allows to set a canonical URL

  • Allows to set Open Graph title, description and image

kitconcept

Examples

This add-on can be seen in action at the following sites:

Translations

This product has been translated into

  • German

Installation

Install kitconcept.seo by adding it to your buildout:

[buildout]

...

eggs =
    kitconcept.seo

and then running bin/buildout

Than start up your Plone site and open it on localhost:8080 in your browser. Log into your site and and click on the user symbol on the bottom left of the page. Choose Site Setup there. Now go to Add-ons and click Install at kitconcept.seo.

Enable the SEO behavior

To enable the SEO tab for a specific content type you have to enable the kitconcept.seo behavior. Go to the page setup and then to the Dexterity Content Types control panel. Choose the content type you want to enable SEO for and enable the kitconcept.seo behavior.

Enable the SEO behavior programmatically

Enable the kitconcept.seo behavior by adding the behavior to the Factory Type Information (FTI) of your type in your generic setup profile. E.g. to enable SEO for the document type, drop a Document.xml file into the profiles/default/types folder of your add-on product with the following content:

<?xml version="1.0" encoding="utf-8"?>
<object name="Document" meta_type="Dexterity FTI" i18n:domain="plone"
  xmlns:i18n="http://xml.zope.org/namespaces/i18n">
  <property name="behaviors" purge="False">
    <element value="kitconcept.seo" />
  </property>
</object>

Add to Volto site

To add kitconcept.seo to your Volto page you need to edit the component you want to use it for. If you want use it for your whole page you can use it in the View.jsx (see here for further information on editing views in Volto). First you have to define the PropTypes for the seo elements by adding:

seo_title: PropTypes.string,
seo_description: PropTypes.string,

… to the PropTypes of the component.

Than you use React-Helmet to set the title and description of the component. So import React-Helmet with:

import Helmet from 'react-helmet';

And finally add this to the jsx code of your component:

<Helmet
       title={
         this.props.content.seo_title
           ? this.props.content.seo_title
           : this.props.content.title
       }
       meta={
         this.props.content.seo_description
           ? [
               {
                 name: 'description',
                 content: this.props.content.seo_description,
               },
             ]
           : [
               {
                 name: 'description',
                 content: this.props.content.description,
               },
             ]
       }
       bodyAttributes={{
         class: `view-${viewName.toLowerCase()}`,
       }}
     />

Usage in Volto

In your Volto page you need to go to the edit mode of the page you want to add a title and description for SEO and open the properties of the page by clicking the properties under the save button. Choose SEO there and add a title and description in the fields. When you are done hit the save button.

Contribute

Support

If you are having issues, please let us know: info@kitconcept.com.

License

The project is licensed under the GPLv2.

Contributors

Changelog

1.4.0 (2020-04-08)

  • Remove maxlength parameter from seo fields. [timo]

1.3.0 (2020-03-24)

  • Add Open Graph title, description and image. [timo]

  • Add German translation. [timo]

1.2.1 (2020-01-16)

  • Re-release 1.2.0. [timo]

1.2.0 (2020-01-16)

  • Add canonical_url option. [timo]

1.1.0 (2020-01-10)

  • Add noindex option. [timo]

1.0.0 (2019-05-14)

  • Python 3 compatibility. [timo]

  • Plone 5.2 compatibility. [timo]

  • Remove unnecessary plone.directives.form test dependency. [timo]

  • Use black formatter. [timo]

1.0.0a1 (2018-07-09)

  • Initial release. [kitconcept]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kitconcept.seo-1.4.0.tar.gz (21.3 kB view details)

Uploaded Source

Built Distribution

kitconcept.seo-1.4.0-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

Details for the file kitconcept.seo-1.4.0.tar.gz.

File metadata

  • Download URL: kitconcept.seo-1.4.0.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for kitconcept.seo-1.4.0.tar.gz
Algorithm Hash digest
SHA256 9746b0c27c805a75dcd7039cc1d089044961308a762264e3dfdf53598e3182d6
MD5 51f8635c54232abb1cc8ac9566080cf0
BLAKE2b-256 1b9aadc0d1c9327761cd764c10f2216812843a75249cfb2d55d8595716177b61

See more details on using hashes here.

File details

Details for the file kitconcept.seo-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: kitconcept.seo-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for kitconcept.seo-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0db91260c5bbb939f8eff2e5eb48ac5ffbb9c7524050676031f81b08a6b75861
MD5 061396984d4766bd3e4cc1e12c374d6c
BLAKE2b-256 0b76250f04bfde6834a02bcd33fb2cba4ab8ac1277d629eb64b1eba8b6951029

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page