我正在使用 TYPO3 4.2.8 和 tt_news 2.5.2。我尝试了以下代码段:
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 尝试了它(来自这个主题的想法)。我的 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 有什么问题?