Skip to:
Content
Pages
Categories
Search
Top
Bottom

Theme update broken forum

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

  • 32diego
    Participant

    @32diego

    For anyone interested this is the fix

    This is actually a bbPress issue with the singular.php template which was introduced in WordPress 4.3 but bbPress doesn’t support it yet. It looks like it has been fixed in core already – https://bbpress.trac.wordpress.org/changeset/5950 – but the update hasn’t been released yet.

    If you add the following code to the top of your index.php for your theme it will provide a temp fix:

    // bbPress fix while they update things…
    if ( function_exists( ‘is_bbpress’ ) && is_bbpress() ) {
    get_template_part( ‘singular’ );
    return;
    }


    Robkk
    Moderator

    @robkk

    Glad you found a solution. You could have created a bbpress.php file your theme to inherit for bbPress pages, but since you do have a singular.php file, what you did works too.


    dave1900
    Participant

    @dave1900

    I have the same issue with my total theme, but your solution doesn’t work 🙁 Do you have another solution? … maybe I have to set some <?php … ?> before and after the code?


    32diego
    Participant

    @32diego

    make sure you’re putting it in the index.php in the total theme folder in wp-content/themes


    dave1900
    Participant

    @dave1900

    Thank you for your fast answer!

    The problem is, that I don’t have access to ftp. Only backend. But I can modify over Appearance > Editor in the backend and then go to index.php.

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
Skip to toolbar