Skip to:
Content
Pages
Categories
Search
Top
Bottom

Just blue links??


  • Onlyanurse
    Participant

    @onlyanurse

    Hello,
    I am completely new to WordPress and bbpress. I have installed the Theme Forest Cinematix theme on my website. It was working fine with bbpress, but it was only displaying 50 forums and I have 62. I was told to go in and change that to the number I needed using the bbpress/includes/forums/template.php and I did this without any problem. It worked fine for a few days, but now it takes forever to load the forums page and it will only show blue links when it does finally load. http://www.nurseboards.com/forums/

    If you access the forum through the buddypress groups pages then they look fine. This is really frustrating for me because I don’t know anything about coding. I emailed the theme author, but have had no response. Please help?
    Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    To display more forums, I normally use a filter. Like Robbkk posted some days ago:

    function rkk_increase_forum_per_page( $args ) {
        $args['posts_per_page'] = get_option( '_bbp_forums_per_page', 150 );
      return $args;
    }
    
    add_filter( 'bbp_before_has_forums_parse_args', 'rkk_increase_forum_per_page' );

    Just add this to your functions.php or put it in a child theme.
    Pascal.


    Onlyanurse
    Participant

    @onlyanurse

    Thank you so much!
    It worked! You’re awesome!

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