Do you mean it is visible?
If so I suspect that this is only to admins – so you can spot trolls !
No, What I mean is that if an anonymous user is entering the forum and fill out his name and email and send a topic. after that if he enter the forum again, his name and email will already be in the input fields.
how can i disable that?
thanks
how did you disable it in the comments form , im sure the code will be similar.
this is the code to disable it for the comments
remove_action( ‘set_comment_cookies’, ‘wp_set_comment_cookies’ );
i think this would have the same effect.
// define the comment_cookie_lifetime callback
function filter_comment_cookie_lifetime( $number )
{
// make filter magic happen here...
return 0;
};
// add the filter
add_filter( 'comment_cookie_lifetime', 'filter_comment_cookie_lifetime', 10, 1 );
thanks but it doesn’t work on the forum
it worked for me, and just so you know bbPress uses some of the WordPress comments code for anonymous posting.
link to a topic i can test on and make sure you have the code placed.
the way i tested it is i tried normal anonymous posting when logged out of my test site inputted my email and name then posted a reply and topic. by default the name and email should populate automatically for my next reply and topic.
with my code it should display empty text inputs even when you already made a reply or topic.
Hey,
the forum address is:
הפורום שלי
please let me know what think.
thanks for your help
ah i see will look into it more then.