Title: Activate for certain forums
Last modified: April 13, 2019

---

# Activate for certain forums

 *  Resolved [Joan Boluda](https://wordpress.org/support/users/boluda/)
 * (@boluda)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/activate-for-certain-forums/)
 * Great plugin!! Is it possible to activate the voting feature only for certain
   forums? Thanks!

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

 *  Plugin Author [natekinkead](https://wordpress.org/support/users/natekinkead/)
 * (@natekinkead)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/activate-for-certain-forums/#post-11923840)
 * Joan,
 * I just released a new version that includes this feature for you.
 * This function in your child theme’s functions.php file will let you choose which
   forum IDs are allowed to have voting…
 *     ```
       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(123, 124, 125) ) ) {
               $allowed = true;
           } else {
               $allowed = false;
           }
           return $allowed;
       }
       ```
   
 *  Thread Starter [Joan Boluda](https://wordpress.org/support/users/boluda/)
 * (@boluda)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/activate-for-certain-forums/#post-11924270)
 * Awesome!!! Thanks Nate!! 😀
 *  Plugin Author [natekinkead](https://wordpress.org/support/users/natekinkead/)
 * (@natekinkead)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/activate-for-certain-forums/#post-11926645)
 * You’re welcome!

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

The topic ‘Activate for certain forums’ is closed to new replies.

 * ![](https://ps.w.org/bbp-voting/assets/icon-128x128.png?rev=3410351)
 * [bbPress Voting](https://wordpress.org/plugins/bbp-voting/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bbp-voting/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bbp-voting/)
 * [Active Topics](https://wordpress.org/support/plugin/bbp-voting/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bbp-voting/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bbp-voting/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [natekinkead](https://wordpress.org/support/users/natekinkead/)
 * Last activity: [6 years, 9 months ago](https://wordpress.org/support/topic/activate-for-certain-forums/#post-11926645)
 * Status: resolved