!!! ALPHA !!!
settings.py:
INSTALLED_APPS = [
'...',
'cmsmetatags',
'...'
]
CMS_PLACEHOLDER_CONF = {
'metatags': {
'name': 'Meta/SEO tags',
'plugins': [
'CMSMetaTagsPlugin',
],
'default_plugins': [
{
'plugin_type': 'CMSMetaTagsPlugin',
'values': {},
},
],
'limits': {
'CMSMetaTagsPlugin': 1,
},
},
}
- CMSMetaTagsPlugin
Make sure the placeholder you allow metatags in, comes after the cms render_block tags
<head>
<meta charset="utf-8">
{% render_block 'css' %}{% render_block 'js' %}
{% placeholder 'metatags' %}
</head>