BuddyBoss Home – Web Support Forums Themes Boss. theme Boss + bbpress (without Buddypress)

Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Question

    #50291
    @tankbarab

    Hi!

    I guess it’s possible to use the Boss theme with just bbpress activated. Somehow it seems like the template which loads /topic in the URL is wrong. It seems like it doesn’t load get_header() and get_footer.

    Can you please check that? I havenn’t changed anything, just uploaded the theme and child theme and installed bbpress.
    I can post a URL if needed.

    Answers

    #50296
    @tankbarab

    Works great on Twenty Fifteen theme. This is what I get with Boss theme when trying the load a topic.

    #50301
    @vapvarun

    Hi @tankbarab
    Please add following codes in your child theme functions.php
    It will fix the issue and I have notified about it developers.

    
    function buddyboss_add_handle_extra() {
      $bb_username = get_userdata(bbp_get_reply_author_id( bbp_get_reply_id() ));
    	echo '<span class="bbp-user-nicename"><span class="handle-sign">@</span>' . $bb_username->user_login . '</span>';
    }
    add_action( 'bbp_theme_after_reply_author_details', 'buddyboss_add_handle_extra' );
    
    function buddyboss_remove_bbb_action() {
     remove_action( 'bbp_theme_after_reply_author_details', 'buddyboss_add_handle' );
    }
    add_action( 'after_setup_theme', 'buddyboss_remove_bbb_action' );
    

    Regards
    Varun Dubey

    #50304
    @tankbarab

    Thanks, works great now!

    #50314
    @vapvarun

    🙂

Viewing 5 posts - 1 through 5 (of 5 total)
  • The question ‘Boss + bbpress (without Buddypress)’ is closed to new replies.