我使用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有什麼問題?