The Keyword Manager is a Plone 6 add-on that lets content editors keep their site's keywords (also called subjects or tags) clean and consistent β without needing developer support. From a dedicated control panel, editors can rename, merge, and delete keywords, and every content item on the site is updated automatically.
Warning
This add-on is designed to work with volto-light-theme. If your site uses a different theme, you will need to provide your own styles or import the existing ones manually: import "@kitconcept/volto-keywordmanager/theme/_main.scss". See the Volto theming documentation for details.
- Content editors who manage tags and subjects on a Plone website and want a clean interface to keep keywords organised.
- Site administrators and technical staff who need to install and configure the add-on for their institution's Plone instance.
- Browse all keywords currently in use, sorted by name or by number of occurrences.
- Filter keywords to quickly find a specific term in a long list.
- Rename a keyword β the new name is applied to every content item that uses it automatically.
- Merge keywords β combine synonyms, fix typos, or resolve ambiguities by merging multiple keywords into one canonical term; all affected content is updated in one step.
- Delete keywords β remove terms that are no longer needed.
- Manage multiple keyword fields β works with the standard
Subjectfield and any other keyword-type index in the catalog.
- Plone 6.1 or 6.2
- Python 3.11, 3.12, or 3.13
- Volto 18 or later (Plone's React-based frontend)
- Node.js 24
- pnpm
- volto-light-theme (recommended; see warning above)
-
Frontend package:
Add the package to your Volto project.
pnpm add @kitconcept/volto-keywordmanager
Then register it as an add-on in your project's
package.json."addons": [ "@kitconcept/volto-keywordmanager" ], "dependencies": { "@kitconcept/volto-keywordmanager": "*" }
[!IMPORTANT] Installing the package without adding it to the
addonsarray will not enable the control panel. -
Backend package:
uv add kitconcept.keywordmanager
or
pip install kitconcept.keywordmanager
Then install the add-on in your Plone site from the Add-ons control panel.
Once installed, the Keyword Manager is available in the Plone site control panel. Start by selecting the keyword field you want to manage, then sort, filter, rename, merge, or delete individual keywords. Every content item using an affected keyword is updated automatically.
This package allows for some configuration.
To configure one of the following options, import the config module like so:
from kitconcept.keywordmanager import configThe keywords permission allows you to set a custom permission who should be able to manage keywords.
config.MANAGE_KEYWORDS_PERMISSION = "kitconcept.keywordmanager: Manage Keywords"The meta type of the keyword indexes can be set. This is only useful if you're one of those crazy people that use custom indexes.
config.META_TYPE = "KeywordIndex"There are indexes of META_TYPE we know we don't want to manage because bad things will happen. You can exclude those using:
config.IGNORE_INDEXES = [
"object_provides",
"allowedRolesAndUsers",
"getRawRelatedItems",
"getEventType",
"block_types",
]You can set a list of indexes that should always be reindex when merging or deleting keywords on objects. Most people won't need this.
config.ALWAYS_REINDEX = (
"SearchableText",
)| Parameter | Source | Type / Values | Required | Default | Description |
|---|---|---|---|---|---|
idx |
form | string | no | "Subject" | The keyword index to query. |
sort_order |
form | "ascending" or "descending" | no | β | The sort order of results. |
sort_on |
form | "keyword" or "occurrence" | no | β | The field to sort on. |
| Parameter | Source | Type / Values | Required | Default | Description |
|---|---|---|---|---|---|
idx |
form | string | no | "Subject" | The keyword index to query. |
new_keyword |
body | string | yes | β | The name of the keyword to be created. |
old_keywords |
body | list[string] | yes | β | The old keywords to be deleted. |
| Parameter | Source | Type / Values | Required | Default | Description |
|---|---|---|---|---|---|
idx |
form | string | no | "Subject" | The keyword index to query. |
items |
body | list | yes | β | The name of the keywords to be deleted. |
No parameters.
Getting the utility.
from kitconcept.keywordmanager.interfaces import IKeywordManager
from zope.component import getUtility
km = getUtility(IKeywordManager)Contributions are welcome! Please read CONTRIBUTING.md.
This repository contains two packages, each under its own license.
| Package | Location | License |
|---|---|---|
kitconcept.keywordmanager |
backend/ | GPL-2.0-only |
@kitconcept/volto-keywordmanager |
frontend/ | MIT |
This add-on is based on code from Products.PloneKeywordManager, adapted and extended for Plone 6 & Volto.
PloneKeywordManager was originally written by Maik Jablonski at the Plone Paderborn Sprint in September 2003, an event funded by the Bertelsmann Foundation. Alexander Limi of Plone Solutions contributed the initial user interface updates and setup code, and Joe Geldart of Netalley Networks later brought the templates up to the Plone 2.0 format. Maik Jablonski subsequently donated the code to the Collective, allowing the community to maintain and extend it going forward.
Since then, the package has been maintained and updated through successive Plone releases by numerous contributors within the Plone Collective. The full list of contributors is available on GitHub.
Building on that foundation, this package was created by the kitconcept GmbH to bring keyword management to Volto.
There is an ongoing effort to bring keyword-management functionality into Plone core itself, tracked as PLIP: Keyword Manager. This add-on is intended as a step toward that goal, a working, up-to-date implementation that can inform (and hopefully eventually be folded into) that core integration. Getting there will require several steps: stabilizing the add-on for Plone 6, gathering community feedback, aligning with the Volto/core UI patterns, and going through the PLIP review process. Contributions and feedback toward that end are welcome.
Thanks to Maik Jablonski and everyone who has contributed to Products.PloneKeywordManager over the years for the original work this builds on.
Generated using Cookieplone (2.0.0a3) and cookieplone-templates (cda10db) on 2026-05-29 11:44:37.855709. A special thanks to all contributors and supporters!
