2012-09-19 104 views
0

我使用TYPO3 4.2.8和tt_news 2.5.2。我嘗試了以下snippet鏈接tt_news中的圖像

plugin.tt_news.displaySingle { 
    image { 
     # turn off default popup anchor 
     imageLinkWrap = 0 
     # add our link to the first URL in links field 
     stdWrap.typolink { 
      parameter = {current:1} 
      parameter { 
      setCurrent.field = links 
      setCurrent.listNum = 0 
       insertData = 1 
     } 
     } 
    } 
} 

然後,我添加圖像到我的新聞,也把一個鏈接到鏈接字段(標籤關係)。

<LINK http://www.yourwesite.com/fileadmin/user_upload/downloads/broschure.pdf _blank>Download brochure</LINK> 

但是,如果我看新聞,我沒有圖像上的鏈接。我需要改變什麼才能使用我舊版本的tt_news?

編輯:

現在我gernericmarkers試了一下(想法來自this topic)。我的TS如下所示:

temp.img = COA 
temp.img.5 = IMAGE 
temp.img.5 < plugin.tt_news.displaySingle.image 
temp.img.5 { 
    required = 1 
    wrap = | 
    file { 
     import = uploads/pics/ 
     import.field = image 
     import.listNum = 0 
    } 
    titleText.field = title 
    altText.field = title 
    if.isTrue.field = links 
    imageLinkWrap.typolink.parameter.data = field:links 
} 

plugin.tt_news.genericmarkers.imagewithlink < temp.img 

標記正在工作,但沒有內容顯示在新聞中。我的TS有什麼問題?

回答

0

我不知道這是否適用於您的舊tt_news版本,但至少從版本3.0+開始,您可以簡單地在模板中使用標記<!--###LINK_ITEM###--> around your image <!--###LINK_ITEM###-->將任何您喜歡的內容鏈接到詳細信息頁面。

0

您的第一個代碼段可以工作,但您必須將沒有標籤的鏈接插入鏈接字段。 例如

http://www.yourwesite.com/fileadmin/user_upload/downloads/broschure.pdf _blank