[MOD] Links in New Window

Hier findet Ihr Modifikationen (MODs) für phpBB3 Olympus (3.0.x)
Forumsregeln
Support für die MODs findet Ihr auf http://www.phpbb.de
Bereich: phpBB 3.0: MOD Support
Benutzeravatar
Foren Mitglied
Site Admin
Site Admin
Beiträge: 1984
Registriert: 05.02.2005 15:41
Wohnort: Xanten
Kontaktdaten:

Formel 1 WebTipp
Formel 1 Punkte : 0
Keine Platzierung
(0 von bisher 22 Rennen getippt)

[MOD] Links in New Window

Beitrag von Foren Mitglied »

Links in New Window

http://www.easytutorials.org/phpbb3_pro ... indow.html

1. Forums with type=link
In styles/prosilver/template/forumlist_body.html find this:

Code: Alles auswählen

<a href="{forumrow.U_VIEWFORUM}" class="forumtitle">      
and replace with this:

Code: Alles auswählen

<a href="{forumrow.U_VIEWFORUM}" class="forumtitle"<!-- IF forumrow.S_IS_LINK --> target="_blank"<!-- ENDIF -->> 

2. Links inside posts
In styles/prosilver/template/bbcode.html find this:

Code: Alles auswählen

<!-- BEGIN url --><a href="{URL}" class="postlink">{DESCRIPTION}</a><!-- END url -->     


and replace with this:

Code: Alles auswählen

<!-- BEGIN url --><a href="{URL}" class="postlink" target="_blank">{DESCRIPTION}</a><!-- END url -->       
Then open includes/functions.php, find this (around line 2704):

Code: Alles auswählen

$html    = "$whitespace<!-- $tag --><a$class href="$url">$text</a><!-- $tag -->$append";      
and replace with this:

Code: Alles auswählen

$html    = "$whitespace<!-- $tag --><a$class href="$url" target="_blank">$text</a><!-- $tag -->$append";      
Doc. :schein: