SEO Plugin for WoodWing
The following documents will guide you through the process of installing SiteAttention SEO plugin for WoodWing.
If you have any questions regarding the installation process, we will be happy to hear from you at support@siteattention.com.
Installation guide
1. Start by opening the following file:
<Enterprise Server path>/contentstation/config.js
2. Put the content below at the top of the file and change the relevant fields:
window.siteAttentionConfig = {
// Replace the empty string with your licenses key
licenseKey: '',
// Component mapping
componentMapping: {
default: {
metadata: {
description: 'intro',
},
// Only used for custom components not related to metadata
custom: [],
},
// optional: override component mapping for specific publication
override: [
{
publication: 'v1',
metadata: {},
custom: [],
},
],
},
// false by default
disableVersionChecks: true,
// This field references the extra metadata that should be used for the initial keywords
extraMetadataKeywords: {
// optional: if this is not present, it'll use the built in "Keywords" in your digital article templates.
default: 'C_ARTICLE_TAGS',
// Overrides the default keywords for publication
override: [
{
publication: 'v1',
property: 'C_ARTICLE_TAGS_V1',
},
{
publication: 'v2',
property: 'C_ARTICLE_TAGS_V2',
},
],
},
};
3. For the plugin itself to be available, you'll need to put the URL (https://cdn.siteattention.com/acs/plugin/latest.js) in your digital editor plugins like shown below:
window.csConfig = {
// ...
plugins: {
// ...
digitalEditor: ['https://cdn.siteattention.com/acs/plugin/latest.js'],
}
};

