jczerwonka (@jczerwonka)

Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • In reply to: After update Wp 3.4.1

    It seems this error was happening because I was using bbPress 2.1 with the bbPress 2.0 template files. Once I copied the theme-compat files into the bbPress directory in my WP theme, the errors went away. Thanks again for the help!

    2.1 is looking great. 🙂

    In reply to: After update Wp 3.4.1

    Thanks for the suggestion. Switching to the twenty ten theme (for bbPress) resolved the error. I didn’t need to disable any plugins. Of course, this isn’t a solution for me but it’s a start toward tracking down the issue. Thanks again!

    In reply to: After update Wp 3.4.1

    I just upgraded to bbPress 2.1 and WP 3.4.1 (at the same time) and now I’m getting the exact same error as the original poster: line 168 in bbp_reply_template. I’m using custom templates.

    @Gustav820

    If you have a page set up as your front page in WordPress Settings->Reading, bbPress will use the title of that page.

    If no front page is specified, then bbPress will use the default of ‘Home’, but you change this by modifying your translation. You can do this by including the following code in your functions.php:

    add_filter( 'gettext', 'my_translations', 10, 3 );

    function my_translations( $translation, $text, $domain ) {
    if( 'Home' == $text )
    $translation = $translations->translate( 'My Homepage' );
    }

    I hope this helps.

    John

Viewing 4 replies - 1 through 4 (of 4 total)