• Resolved pressplay21

    (@pressplay21)


    It seems like rows are missing.

    Forums

    Search for: Home › Forums Forum Topics Posts Freshness Hot Topics 0 0 No Topics Test Test 0 0 No Topics

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author monkey-themes

    (@monkey-themes)

    bbPress is not yet supported.
    I’m working for it, and will be soon in the version 1.5.8.

    Theme Author monkey-themes

    (@monkey-themes)

    I’ve a solution of your problem.
    Go to Appearance > Editor, find content-page.php from the Template.
    Find the following lines:

    <?php if ( is_page() ) : ?>
          <?php the_content(); ?>
      <?php else: ?>
           <?php the_excerpt(); ?>
       <?php endif; ?>

    Replace the above line with the following:

    <?php if ( function_exists( 'is_bbpress' ) ): ?>
           <?php if ( is_bbpress() ): ?>
                    <?php the_content(); ?>
            <?php endif; ?>
        <?php else: ?>
             <?php if ( is_page() ) : ?>
                   <?php the_content(); ?>
              <?php else: ?>
                   <?php the_excerpt(); ?>
               <?php endif; ?>
        <?php endif; ?>

    Thread Starter pressplay21

    (@pressplay21)

    The forum is visible now but something in here breaks login/register/logout for theme my login plugin.

    Thread Starter pressplay21

    (@pressplay21)

    ok. it looks like a slight change in condition work for me.

    <div class=”the-content”>
    <?php if ( is_bbpress() ) :
    the_content();
    elseif ( is_page() ) :
    the_content();
    else :
    the_excerpt();
    endif
    ?>
    </div>

    Theme Author monkey-themes

    (@monkey-themes)

    🙂

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

The topic ‘Is bbPress forum supported?’ is closed to new replies.