XF 1.1 Link Forum target="_blank

Morgain

Well-known member
How do I add the target="_blank code to make a Link Forum target URL open in a new tab or page?
 
You can do it in this way.

Edit "PAGE_CONTAINER" template and add the code below just after opening tag of head, means after "<head>":
Code:
<base target="_blank">
Then all links, even internal links will be opened in new tab.
 
Top Bottom