Forums

Join
bbPress Support ForumsTroubleshootingWhat code is generating this

Info

What code is generating this

  1. http://i628.photobucket.com/albums/uu8/npoeran/vraag.png

    Sorry for the bad topic title :$

  2. What does that say in English, and what theme did you start with to create that?

  3. It says: You must be logged in to post.

    I created that theme using Kakumei.

  4. I have it on line 311 of bb-includes/functions.bb-template.php in a 1.0.1 installation.

    I wouldn't modify the core bbPress file, but that's where the text comes from. I'm not sure of the best way to modify that text though.

  5. Thanks, I'll look it up.

    I wanted to remove or replace that with an actual login form.

  6. Something like:

    function no_login_notice( $a, $b ) {
    	if( $b !== 'You must <a href="%s">log in</a> to post.' )
    		return $a;
    }
    add_filter( 'gettext', 'no_login_notice', null, 2 );

    should work I think

  7. You must log in to post.