You need to edit a style file to open link forum types in new tab. Open /template/forumlist_body.html file of the style you are using and find below:
Code: Select all
<a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a>
class="forumtitle"
if you can't find it.Replace:
Code: Select all
<a href="{forumrow.U_VIEWFORUM}"{% if forumrow.S_IS_LINK %} target="_blank"{% endif %} class="forumtitle">{forumrow.FORUM_NAME}</a>
Save changes. That's it. The links now open in new tab.