Doesn't show the REGISTER link only the Admin Site.
Doesn't show the REGISTER link only the Admin Site.
hello? anyone?
I haven't a clue what you mean, I presume everyone else is in the same boat. Can you explain again?
wp_register.php doesn't exist, in case that's what you want to know!
codex.wordpress.org/Template_Tags/wp_register
Template tag
show REGISTER or ADMIN SITE link
Guess what? you're probably logged in...
this is the most ridiculous joke ever...
I tried in 2 browsers, in the one that Im not logged it don't appear.
anyone can help?
Can you delete the cookies in your browser for your site?
Donncha, Im logged in the blog in the FireFox, Im testing the not logged in Internet Explorer.
In Internet Explorer the link that should appear from the tag just don't show up.
Are you using a proxy server that may have cached the logged in page somehow?
nope... let's do this, check my site: http://www.clanlogs.net
should appear 2 REGISTER lines. One I put the link myself, the other is made by the sistem.
I got this error: "There is no website configured at this address."
Are you testing this locally?
wp_register only shows up when logged out if you have checked the option "Anyone can register" in Option -> General: Memberships - which isn't an option in any MU blogs.
mmmm.... I see...
Donncha: seem that my host messed up something while fixing the httpd.conf stuff lol
there's a way to change it?
I see two links now - Entrar and Register. Is that correct?
yes, ENTRAR is for LOGIN, REGISTER is the hand-made to register.
Now, if you create an account and log in you'll see SAIR (Sign Out), Administração (the real register) and REGISTER.
function wp_register( $before = '<li>', $after = '</li>' ) {
if ( ! is_user_logged_in() ) {
if ( get_settings('users_can_register') )
$link = $before . '<a href="' . get_settings('siteurl') . '/wp-register.php">' . __('Register') . '</a>' . $after;
else
$link = '';
} else {
$link = $before . '<a href="' . get_settings('siteurl') . '/wp-admin/">' . __('Site Admin') . '</a>' . $after;
}
echo apply_filters('register', $link);
}
and by default 'users_can_register' is 0. There's a "can override" in the table, but I can't find what it means. File 'general-template.php'.