phpBB3 Hide Links from Guests
Ok, I figured out how to hide url links from guests in phpBB3. You can redirect those links to wherever you want (like a registration page, or whatever). Go to includes/bbcode.php, and find the function bbcode_tpl_replace. Toward the top add a new static array:
static $guest_replacements = array(
‘url’ => array(’{URL}’ => ‘http://www.movethemarkets.com’, ‘{DESCRIPTION}’ [...]