more than 50 topics on the front page
-
I want to show more than 50 topics on a forum on the front page, if I click on the forum it will list more than 50 but only 50 show up on the front page,
Hope this makes sense, if you look at my site (wateratairports.com) Vietnam is not on the front page but if you click on “Countries” it is at the end.I found the following but that does not work.
// filter to show more than 50 forums on the index page
function bbp_increase_forum_per_page( $args = array() ) {
$args[‘posts_per_page’] = get_option( ‘_bbp_forums_per_page’, 100 );
return $args;
}
add_filter( ‘bbp_before_has_forums_parse_args’, ‘bbp_increase_forum_per_page’ );I have bbp style pack and under forum display there is a line 11. No. Forums Per Page
Default : 50 I have changed that to 100 but that does not seem to work either.
- You must be logged in to reply to this topic.