MyBB Community Forums

Full Version: simple(?) theme modification
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How could I make it so that links in post are bold, but links elsewhere are not
Hello there

open ./inc/class_parser.php

find
$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>";
replace with
$link = "<a href=\"$fullurl\" target=\"_blank\"><strong>$name</strong></a>";