Topic on Project:Support desk

NH35 (talkcontribs)

Hi,

How can i change original registration link in navigation bar?

Ciencia Al Poder (talkcontribs)
NH35 (talkcontribs)

I read the documentation but I still have no idea how to set this up :(

Ciencia Al Poder (talkcontribs)

something like this (untested)

function onPersonalUrls_CreateAccountUrl( array &$personal_urls, Title $title, SkinTemplate $skin ) {
    if ( isset( $personal_urls['createaccount'] ) ) {
        $personal_urls['createaccount']['href'] = "http://whatever.login/link/you.want";
    }
}

$wgHooks['PersonalUrls'][] = 'onPersonalUrls_CreateAccountUrl';