MyBB Community Forums

Full Version: change signup link in the header ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
i want change signup link in my forum and use another one ( use signup in the main site ) ..
how to change the link ?
You mean rename link or change link?

If you mean renaming link Register you can find it at Admin cp -> Configuration -> Languages

In global.lang.php it's called
welcome_register
(2014-11-17, 09:03 PM)Zyon Wrote: [ -> ]You mean rename link or change link?

If you mean renaming link Register you can find it at Admin cp -> Configuration -> Languages

In global.lang.php it's called

welcome_register

no i want change Register link and use my own link ..
Go to Admin cp -> Templates and styles -> templates

Now click on Header and header_welcomeblock_guest

find
<a href="{$mybb->settings['bburl']}/member.php?action=register" class="register">{$lang->welcome_register}</a>
And replace with:
<a href="url" class="register">Singup</a>

In place of url put your full link.

But be carefull! Your members wouldn't be able to register than on that link at your forum.