Magnolia 5.3 reached end of life on June 30, 2017. This branch is no longer supported, see End-of-life policy.
The Tags Manager app is a central place to manage marketing tags such as Web analytics, third-party content and advertising network code snippets. The app allows you to create tags and place them on pages. Magnolia 5.3+
A tag is typically a piece of JavaScript code. When a page loads, the JavaScript code runs and collects usage information about the page and the visitor. The tag then reports this information to the service that provided the tag. The service stores and analyses the information. If the service provides an analytics dashboard you can display it in the Tags Manager app.
For more information about what marketing tags are and how they are used, see:
The Tags Manager app is installed by the Marketing Tags Manager module. The app is configured at Configuration > /modules/tags-manager/
.
Node name |
---|
modules |
tags-manager |
The app operates on the tags
workspace where the code snippets and their details are stored.
The Marketing Tags Manager module registers a custom mgnl:tag
node type. The Tags Manager app operates on nodes of this type.
In tag properties, define a name for the tag and indicate where in page HTML it should be inserted. Usually the provider of the tag will specify where the tag should be added. If not specified, the safest is probably the head
element. If the tag takes a long time to load and delays page rendering put at the end of the body. Optionally you can also define a dashboard URL for viewing the information collected by the tag.
Fields:
<head>
element<body>
element</body>
elementTag content is typically a piece of JavaScript code. Some tag providers refer to it as a tag, others as a snippet or hook. Paste the code provided by the service into the box. Magnolia will insert the code on the pages you choose on the Pages tab.
Choose which pages to add the tag. Check the Insert in subpages box to insert the tag on all pages in a site branch.
To test tag insertion, create a tag that displays a JavaScript popup. This way you can verify that a tag would be inserted on the correct pages.
<script> window.alert("Hello Magnolia!"); </script>
Publish the tags from the author instance to the public instance.
Visit the website of the service that provided the tag in order to view the information collected by the tag. You can view the information in a separate browser window use the Tags Manager app. Click the Show provider dashboard action.
This example shows a Clicky dashboard. You need to be logged into the analytics service to see the dashboard.
Some dashboards such as Google Analytics cannot be displayed in a subapp. Google explicitly specifies in their headers that a dashboard cannot be displayed in an iFrame (x-frame-options: SAMEORIGIN
). To get around this limitation, click the link at the top of the subapp to open the dashboard in a new window.