摆脱新闻预告片中的阅读更多链接

时间:2014-01-27 11:53:44

标签: typo3 typo3-6.1.x tx-news

我的网站上有一个新闻列表元素,没有与之关联的详细信息页面。但是,预告片标题和图片仍然是链接,read more链接仍然显示。

如何在预告片中禁用指向详细信息页面的所有链接。

我在此搜索了dokumentation,但我发现只能处理tt_news扩展,而不是tx-news

2 个答案:

答案 0 :(得分:0)

答案是意大利语,但似乎可以解决您的问题。

  在typoscript插件配置中

{plugin.tx_news 
    {_LOCAL_LANG 
        default { 
            read_more = read 
        } 
        it { 
            read_more = VEC 
        } 
.... other languages ​​.... 
    } 
}

通过http://forum.typo3.org/index.php/t/195490/

答案 1 :(得分:0)

您必须edit the templates并从列表视图中删除链接。

您将在/ext/news/Resources/Private/Partials/List/Item.html

中找到此模板

请勿编辑此原始文件,而是按照上面的链接中的说明进行复制。

例如现在更改...

<h3>
    <n:link newsItem="{newsItem}" settings="{settings}" title="{newsItem.title}">
        <span itemprop="headline">{newsItem.title}</span>
    </n:link>
</h3>

...到...

<h3>
        <span itemprop="headline">{newsItem.title}</span>
</h3>