0

我正在使用 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 有什么问题?

4

2 回答 2

0

我不知道这是否适用于您的旧 tt_news 版本,但至少从版本 3.0+ 开始,您可以简单地使用<!--###LINK_ITEM###--> around your image <!--###LINK_ITEM###-->模板中的标记将您喜欢的任何内容链接到详细信息页面。

于 2013-01-28T13:30:56.560 回答
0

您的第一个片段有效,但您必须将不带标签的链接插入链接字段。例如

http://www.yourwesite.com/fileadmin/user_upload/downloads/broschure.pdf _blank
于 2013-03-20T14:00:37.887 回答