Title: Comment-ability
Last modified: August 31, 2016

---

# Comment-ability

 *  Resolved [apsilva028](https://wordpress.org/support/users/apsilva028/)
 * (@apsilva028)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/comment-ability/)
 * Is there a way to limit the commenter to only being able to comment once then
   hide the comment/reply box? Meaning once they submit a comment, the “Join the
   discussion” box disappears?
 * [https://wordpress.org/plugins/wpdiscuz/](https://wordpress.org/plugins/wpdiscuz/)

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

 *  Plugin Author [gVectors Team](https://wordpress.org/support/users/gvectors-team/)
 * (@gvectors-team)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/comment-ability/#post-7041939)
 * Hi apsilva028,
    I’m sorry but there is no such an option, we don’t have an easy
   clue for this.
 *  Thread Starter [apsilva028](https://wordpress.org/support/users/apsilva028/)
 * (@apsilva028)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/comment-ability/#post-7041982)
 * How could I incorporate this code into the plugin?
 * <?php
    global $current_user; $args = array(‘user_id’ => $current_user->ID); $
   usercomment = get_comments($args); if(count($usercomment) >= 1){ echo ‘disabled’;}
   else { comment_form(); } ?>
 * I basically want the comment to not appear is usercomment <=1
 *  Plugin Author [gVectors Team](https://wordpress.org/support/users/gvectors-team/)
 * (@gvectors-team)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/comment-ability/#post-7042112)
 * Ok, if you good in PHP then you’ll be able to find all necessary variables in/
   wpdiscuz/templates/comment/comment-form.php file.
 * Please find this line:
 *     ```
       <?php $wpdiscuz->helper->formBuilder('main', '0_0', $commentsCount, $current_user); ?>
       ```
   
 * And put it in your `ELSE` condition. The `$current_user` already exists.

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

The topic ‘Comment-ability’ is closed to new replies.

 * ![](https://ps.w.org/wpdiscuz/assets/icon-256x256.png?rev=1076265)
 * [Comments - wpDiscuz](https://wordpress.org/plugins/wpdiscuz/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wpdiscuz/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wpdiscuz/)
 * [Active Topics](https://wordpress.org/support/plugin/wpdiscuz/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpdiscuz/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpdiscuz/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [gVectors Team](https://wordpress.org/support/users/gvectors-team/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/comment-ability/#post-7042112)
 * Status: resolved