Hm,
that's strange. I made a simple test, added some tagged news, made a news tag cloud and a news list to display it. As template I've chosen news_latest. I went to the templates section, created a new template on base of news_latest and modified this template by adding
Code:
<pre><?php $this->showTemplateVars(); ?></pre>
.
In the result I found the tags for every news entry:
Code:
[tags] => Array
(
[0] => green
[1] => jazz
[2] => live
[3] => piano
[4] => saxophone
)
Code:
[taglist] => Array
(
[0] => Array
(
[url] => green
[tag] => green
[class] => green
)
[1] => Array
(
[url] => jazz
[tag] => jazz
[class] => jazz
)
[2] => Array
(
[url] => live
[tag] => live
[class] => live
)
[3] => Array
(
[url] => piano
[tag] => piano
[class] => piano
)
[4] => Array
(
[url] => saxophone
[tag] => saxophone
[class] => saxophone
)
)
So it seems to work for me...
How exactly did you add your newslist with the modified template into the article?
Best,
Helmut
Bookmarks