collective.behavior.seo
This small behavior adds extra fields used for SEO optimisation. Inspired by collective.seo, but the data store now uses dexterity/behavior practice.
Features
Adds fields Title and Description on an extra tab SEO on contenttypes where the behavior is activated.
When the fields contain values, the <title> and <meta name=’description’> in the <head> section will be replaced.
Translations
This product has been translated into:
Dutch
Installation
Install collective.behavior.seo by adding it to your buildout:
[buildout] ... eggs = collective.behavior.seo
and then running bin/buildout
Activate the add’on in the Plone Contron Panel. Then go to Dexterity Types in the Plone Control Panel and activate this behavior on selected content types.
Contribute
Issue Tracker: https://github.com/collective/collective.behavior.seo/issues
Source Code: https://github.com/collective/collective.behavior.seo
Documentation: https://docs.plone.org/foo/bar
License
The project is licensed under the GPLv2.
Contributors
Zest Software, info@zestsoftware.nl
This add’on is a combination of several SEO add’ons and improvements for Plone 5.1:
Title, description seo fields based on collective.seo https://github.com/collective/collective.seo for Plone 5.1+
Changelog
1.0.1 (2020-09-09)
Make python3.8 compatible. [fredvd]
1.0.0 (2020-08-17)
Make python3 compatible. [erral]
Update uninstall profile. [fredvd]
1.0b1 (2018-10-30)
Add robots field, Add control panel form with configurable list of robot tag preset combinations for editors to pick from. [fredvd]
Don’t generate robots vocabulary on every request. [fredvd, mauritsvanrees]
Fix implementer decorator on SEOFields behavior in python. The zcml registration was correct though. [fredvd]
Revert name changes. [jladage]
Improve description of robots field. [jladage]
Autopep8 and fix code-analysis feedback. [jladage]
1.0a1 (2018-10-12)
Override update method on TitleViewlet instead of page_title, otherwise Site title still gets appended to the overriden title. [fredvd]
Basic version, only for Title and Description [fredvd]