Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Filter to Change Login URL

Not sure if this is the best method but I don’t have more time to research and here is what I came up with:

1. Create a new file; /my-plugins/bb-template.php

2. Code:

add_filter('bb_template', '_bb_template');

function _bb_template($template)
{
if (preg_match('/login.php/i', $template))
{
header('Location: /myurl/');
exit();
}

return $template;
}

3. Activate in bb-admin

Skip to toolbar