在tt_news中链接图像

时间:2012-09-19 14:49:52

标签: image hyperlink typo3 tt-news

我正在使用TYPO3 4.2.8和tt_news 2.5.2。我尝试了以下snippet

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出了什么问题?

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

您的第一个代码段有效,但您必须将没有标记的链接插入到链接字段中。 e.g。

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