Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
Hi,

I'd like to add description meta tags in my news, so Google can see the correct description for every different news.

Is there a way to add this piece of information? For the title meta tag I used:

<title><cms:if k_is_page ><cms:show k_page_title /><cms:else />Serena Store - Contenuti digitali per gli studi odontoiatrici</cms:if></title>

But for the description?

<meta name="description" content="..............">

Thank you for your help!!
Hi,

You may define editable regions to do hold the meta data e.g.
Code: Select all
<cms:editable name='seo_desc' label='Meta Description' type='text' />
<cms:editable name='seo_keywords' label='Meta Keywords' type='text' />

Those then can be used in your template e.g. as follows -
Code: Select all
<meta name="description" content="<cms:show seo_desc />" />
<meta name="keywords" content="<cms:show seo_keywords />"/>

Hope this helps.
2 posts Page 1 of 1