Title: Help Needed!
Last modified: August 21, 2016

---

# Help Needed!

 *  [shearamariz](https://wordpress.org/support/users/mariz_p/)
 * (@mariz_p)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/help-needed-42/)
 * I am currently modifying the bbpress moderation plugin like adding a user notification,
   only the registered author can see his pending topic.
 * Now I just need help for this, I want to show the pending posts to the profile
   area only. It would really be awkward if you will see your pending post in the
   most popular tabs or categories. I hope someone here can help contribute to this
   beautiful plugin.
 * Below are my modified codes:
 *     ```
       function query($bbp) {
   
       		global $current_user, $post;
   
       		if (get_option(self::TD . 'always_display')) {
       			$post_author = wp_get_current_user();
   
       			if ( (current_user_can('moderate')) || (current_user_can('subscriber')) ) {
   
       					add_filter('posts_where', array($this, 'posts_where'));
   
       			} else{
   
       			}
       		}
       			else
       			{
   
       				// remove_filter('posts_where', array($this, 'posts_where'));
       			}
   
       		return $bbp;
       	}
       ```
   
 * Now the add filter there is the reason why we see the pending posts. I am planning
   to just show it the topics created in the profile area of bbpress. I use the `
   do_action( 'bbp_template_before_user_topics_created' );` to get it as a template
   and show it’s result there but I guess I’m wrong.
 * I hope you can help me.
 * Thanks.
 * [http://wordpress.org/plugins/bbpressmoderation/](http://wordpress.org/plugins/bbpressmoderation/)

The topic ‘Help Needed!’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/bbpressmoderation.svg)
 * [bbPress Moderation](https://wordpress.org/plugins/bbpressmoderation/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bbpressmoderation/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bbpressmoderation/)
 * [Active Topics](https://wordpress.org/support/plugin/bbpressmoderation/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bbpressmoderation/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bbpressmoderation/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [shearamariz](https://wordpress.org/support/users/mariz_p/)
 * Last activity: [12 years, 4 months ago](https://wordpress.org/support/topic/help-needed-42/)
 * Status: not resolved