Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Adding mutiple Meta tags on page
mishravik
We would like to have options to add multiple Meta tags like shown below on particular pages.
options to add multiple meta details for every pages.
-head
-meta name="name3" content="details3"
-meta name="name2" content="details2"-
-meta name="name1" content="details1"-
-link rel=name4 href="href path"-
....
-/head
Is there any way, we can make this into TeamSite 7.3.2 version.
Find more posts tagged with
Comments
Rick Poulin
You can do this with either a precontroller or by modifying the top-level XSL file with page tokens (assuming LiveSite)
If you're talking TeamSite DCR generation, then it all depends on how you've built your PTs.
mishravik
We are able to do this by PAGE_SCOPE..
metatag='-meta name="name3" content="details3"--meta name="name2" content="details2"--meta name="name1" content="details1"-';
context.getPageScopeData().put(RuntimePage.PAGESCOPE_HEAD_INJECTION, metatag);
It's working for us.