hyperlinktypo3typoscripttt-news

How to remove a-tag's title param in tt_news using typoscript


The standard output of a tt_news list view hyperlink is like:

<a href="link-to-full-article" title="News Headline">News Headline</a>

How to remove the title tag from the standard output with typoscript ? So that you get:

<a href="link-to-full-article">News Headline</a>

I' am looking for a typoscript something like:

plugin.tt_news.displayList.linkParams.ATagParams >

Info: The template (sub)marker which includes the hyperlink is called:

<!-- ###LINK_ITEM### -->
   ... some Headline ...
<!-- ###LINK_ITEM### -->

Solution

  • It's

    plugin.tt_news.displayList.linkTitleField = 
    

    However title will be there, it will not be filled.

    If you want to remove the empty title part as well you need to dive into the plugin to remove it.