Sort Replies by Voting Not Working on Single Forum
-
Hello!
I am attempting to setup this plugin on my site so that:
1. Voting is allowed on only one sub-forum
2. Replies are sorted by voting on only that sub-forumBased upon the plugin FAQ I added these filters:
add_filter( 'bbp_voting_allowed_on_forum', 'allowed_voting_forums', 10, 2 ); function allowed_voting_forums( $allowed, $forum_id ) { if( in_array( $forum_id, array(617864) ) ) { $allowed = true; } else { $allowed = false; } return $allowed; } add_filter('sort_bbpress_replies_by_votes', '__return_true');
And yet, the replies are still sorted chronologically and not by votes.
However, if I remove the code to allow votes on only the one sub-forum, the replies are sorted by votes.
I am on version 1.2.8
Am I doing something wrong?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Sort Replies by Voting Not Working on Single Forum’ is closed to new replies.