MyBB Community Forums

Full Version: Remove target="_blank" from links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I stop links in posts opening in a new tab?

Trying to remove:

target="_blank"


I know you could used to do this from the inc/class_parser.php file in earlier versions...

But how do you do it in 1.8 (1.8.22)?
you can change it in mycode_url template

forum admin panel >> Templates & Style >> Templates >> your theme templates
>> MyCode Templates >> mycode_url

<a href="{$url}" target="_blank"{$rel} class="mycode_url">{$name}</a>
(2020-04-13, 05:39 AM).m. Wrote: [ -> ]you can change it in mycode_url template

forum admin panel >> Templates & Style >> Templates >> your theme templates
>> MyCode Templates >> mycode_url

<a href="{$url}" target="_blank"{$rel} class="mycode_url">{$name}</a>

Thank you for providing the solution.