[TYPO3-ttnews] linking related news items
Hartmut Steglich
hartmut.steglich at web.de
Thu May 22 18:05:22 CEST 2008
I had the same problem. page id for single view was set in the flexform
of the list. I set it also in the flexform of the single view on single
view page. Sounds stupid but works fine.
Nagita Karunaratne schrieb:
> Hi,
>
> I cannot get my related news links in a single news item to link to the
> other news items.
>
> I have pasted the part of TS below. Note that uid.singlePage points to
> the page with the SINGLE news.
>
> Thanks,
> Nagita
>
> ----------------------------------------------------
> plugin.tt_news {
> ### Settings for Related News:
> related_stdWrap.wrap = <dl class="news-single-related">|</dl>
> relatedHeader_stdWrap.wrap = <dt>|</dt>
>
> # icon for related news
> tmp.5 = IMAGE
> tmp.5 {
> file = EXT:tt_news/ext_icon.gif
> file.width = 11
> file.height = 12
> wrap = |
> }
>
> # end-wrap for the getRelated objects
> tmp.20 = TEXT
> tmp.20 {
> field = datetime
> strftime = %B %d, %Y
> wrap = - |
> }
>
> # Build the list of related news:
> getRelatedCObject = COA
> getRelatedCObject {
> # groupBy =
> orderBy = datetime desc
>
> 10=CASE
> 10.key.field=type
> # settings for 'normal' related news
> 10.default=COA
>
> 10.default {
> wrap = <dd> | </dd>
> 5 < plugin.tt_news.tmp.5
> 10 = TEXT
> 10.field = title
> 10.typolink.parameter = {$uid.singlePage}
> 10.typolink.additionalParams.data=register:newsAddParams
> 20 < plugin.tt_news.tmp.20
> }
>
> # settings for related news, that point to internal pages
> 10.1=COA
> 10.1 {
> wrap = <dd> | </dd>
> 5 < plugin.tt_news.tmp.5
> 5.file=EXT:tt_news/res/tt_news_article.gif
> 10 = TEXT
> 10.field = title
> 10.typolink.parameter.field = page
> 20 < plugin.tt_news.tmp.20
> }
>
> # settings for related news, that point to external URLs
> 10.2=COA
> 10.2 {
> wrap = <dd> | </dd>
> 5 < plugin.tt_news.tmp.5
> 5.file=EXT:tt_news/res/tt_news_exturl.gif
> 10 = TEXT
> 10.field = title
> 10.typolink.parameter.field = ext_url
> 20 < plugin.tt_news.tmp.20
> }
> }
> }
More information about the TYPO3-project-tt-news
mailing list