Title: Adding Comments on Taxonomy
Last modified: November 8, 2019

---

# Adding Comments on Taxonomy

 *  Resolved [mariusmrs](https://wordpress.org/support/users/mariusmrs/)
 * (@mariusmrs)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/adding-comments-on-taxonomy/)
 * Hello, i need to add this awesome plugin to my website.
    The problem is that 
   i have taxonomy pages added to a post, the comments on taxonomy pages are the
   same with the comments on parent post. The problem is that wpdiscuz replaces 
   the comment form on the post but when i enter the taxnonomy pages the old form
   appears. I’ve checked all the boxes on form settings, but the taxonomy are’t 
   there. Is there a function i can use to show the comment form? I can send you
   a link to my website on email or smth.
 * Thanks.
    -  This topic was modified 6 years, 7 months ago by [mariusmrs](https://wordpress.org/support/users/mariusmrs/).

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

 *  Plugin Support [gVectors Support](https://wordpress.org/support/users/gvectorssupportmember/)
 * (@gvectorssupportmember)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/adding-comments-on-taxonomy/#post-12113674)
 * Thank you [@mariusmrs](https://wordpress.org/support/users/mariusmrs/),
 * I’m really sorry but wpDiscuz cannot be used on non-single template files (category,
   tag, author, etc..) it’s only designed for single pages (single.php, page.php,
   custom-post-type.php). Please don’t try to include wpDiscuz in the category page,
   it has no chance to work. The comment box duplication will always generate JS
   errors.
 *  Thread Starter [mariusmrs](https://wordpress.org/support/users/mariusmrs/)
 * (@mariusmrs)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/adding-comments-on-taxonomy/#post-12114124)
 * I resolved it by removing
 * is_singular()
 * from
 * return apply_filters(‘is_load_wpdiscuz’, $form->getFormID() && (comments_open(
   $post) || $post->comment_count) && is_singular() && post_type_supports($post-
   >post_type, ‘comments’), $post);
 * Seems to work fine. Like i said taxonomy comments are the comments of parent 
   post of that taxonomy.
 *  Plugin Support [gVectors Support](https://wordpress.org/support/users/gvectorssupportmember/)
 * (@gvectorssupportmember)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/adding-comments-on-taxonomy/#post-12118096)
 * [@mariusmrs](https://wordpress.org/support/users/mariusmrs/),
 * Please remove all the customizations you’ve done.
 * As we’ve already mentioned we recommend you do those changes, it causes a lot
   of JS errors.
 *  Plugin Support [gVectors Support](https://wordpress.org/support/users/gvectorssupportmember/)
 * (@gvectorssupportmember)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/adding-comments-on-taxonomy/#post-12122171)
 * Hi [@mariusmrs](https://wordpress.org/support/users/mariusmrs/),
 * > As we’ve already mentioned we **don’t recommend** you do those changes, it 
   > causes a lot of JS errors.
 * I’ve asked the developers one more time, and they confirmed that the is_singular()**
   must not be removed**.
 * All elements of the hook are very important.
 * Please remove all customizations you’ve made.
 * Below is provided an example of how to load the wpDiscuz on archive pages.
 *     ```
       add_filter('is_load_wpdiscuz', function ($isLoad) {
          if (is_archive()) {
              return true;
          }
          return $isLoad;
       });
       ```
   
 * You should put the code in the active theme’s functions.php file.

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

The topic ‘Adding Comments on Taxonomy’ 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/)

 * 4 replies
 * 2 participants
 * Last reply from: [gVectors Support](https://wordpress.org/support/users/gvectorssupportmember/)
 * Last activity: [6 years, 7 months ago](https://wordpress.org/support/topic/adding-comments-on-taxonomy/#post-12122171)
 * Status: resolved