Using the Introduction Package 4.5 (Not templa voila)

The page.meta template sets the meta tag 'description' in Setup:

page.meta {
description = {$plugin.meta.description}
}

. . . and the description string value is defined in the root template Constant:

plugin.meta {
description = description string goes here
}

But now how do I dynamically include each Page Title in the Description meta tag? Something like

 description = {plugin.meta.description}{pageTitle.value} ?

Any clues will be appreciated.

link|improve this question
If one of the answers worked for you, do not forget to mark them as accepted :) – Mateng Oct 17 '11 at 4:45
feedback

2 Answers

up vote 0 down vote accepted

To put this in a single line you could use .dataWrap on description like this:

page.meta.description.dataWrap = {$plugin.meta.description} - {field:title}
link|improve this answer
Thanks @bjorn-kuipers . Perfect! – HowardK Oct 7 '11 at 9:03
feedback

You can use any stdWrap function on description, I would use a COA to combine those values:

page.meta.description.cObject = COA
page.meta.description.cObject {
    10 = TEXT
    10.value = {$plugin.meta.description}

    20 = TEXT
    20.data = field:title
}

You can find more information here: http://wiki.typo3.org/TSref/META

link|improve this answer
I think you would need to make it: page.meta.description.cObject = COA and page.meta.description.cObject { – Bear Oct 7 '11 at 2:43
1  
And change 20.data = field.title to 20.data = field:title or 20.field = title. – Bear Oct 7 '11 at 2:50
You're right, Björn. I've updated my answer – konsolenfreddy Oct 7 '11 at 4:35
Thank you BjörnKuipers and konsolenfreddy. Works perfectly! – HowardK Oct 7 '11 at 9:00
Great @konsolenfreddy, thanks for updating your example :) Sure HowardK, np – Bear Oct 7 '11 at 20:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.