Posted: 09/16/2015 2:38:41 AM
Reply Quoted
There are "Meta Description" and "Meta Keywords" fields on article adding/editing page that you can use.
I'm not sure though if data entered in there would actually be used on article detail page on Front-End in META HTML tags.
If it won't you need to:
1. open "/platform/elements/html_head.elm.tpl" template
2. locate following lines:
<meta name="Description" content="<inp2:st_PageInfo type='meta_description'/>" />
<meta name="Keywords" content="<inp2:st_PageInfo type='meta_keywords'/>" />
3. replace them with following:
<inp2:m_if check="m_IsActive" template="in-news/articles/article_detail">
<meta name="Description" content="<inp2:n_Field name='MetaDescription'/>" />
<meta name="Keywords" content="<inp2:n_Field name='MetaKeywords'/>" />
<inp2:m_else/>
<meta name="Description" content="<inp2:st_PageInfo type='meta_description'/>" />
<meta name="Keywords" content="<inp2:st_PageInfo type='meta_keywords'/>" />
</inp2:m_if>