MyBB Community Forums

Full Version: Open only external links in post to new window
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, i found this post below made in 2006. I am new to MyBB. I heard that this forum is better then phpBB. So, I figured that I would give it a shot. I did a search on inc/functions_post.php for the below and couldn't' find it. I guess the programming of code has changed. Does anyone know where I would complete this. So any external link in posts opens in new window, but external links in posts will post in new window.

Thanks Big Grin


Quote:By default any link in any posted in mybb opens in a new window.
However if we understood you right and you want only external links to open in a new window. then try this

above
PHP Code:
$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>"; 

add

PHP Code:
if(strstr($fullurl,$mybb->settings['bburl']))
            {
                $target = "_self";
            } else {
                $target = "_blank";
            } 
now change target=\"_blank\" to target=\"$target\"
Open ./inc/class_parser.php file and find;
$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>";

and replace it to the following;
		if(strstr($fullurl,$mybb->settings['bburl']))
            {
                $target = "_self";
            } else {
                $target = "_blank";
            }
		$link = "<a href=\"$fullurl\" target=\"$target\">$name</a>";
Do I have to refresh the cache? It isn't working... Excuse me, I am new to MyBB
Try to clear cache. It should work.
how do i clear cache on the forum? Do I clear it on my browser?
Yes, of course.
Nope, it didn't work. I did exactly what you said
Here it is working fine Undecided Are you editing ./inc/class_parser.php file ?