Title: Enable Comments on Screen Options
Last modified: August 20, 2016

---

# Enable Comments on Screen Options

 *  [luigitec](https://wordpress.org/support/users/luigitec/)
 * (@luigitec)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/enable-comments-on-screen-options/)
 * Hi,
 * I would like to know if is it possible to enable comments on each property page?(
   e.g. Disqus comments) from the Screen Options tab just like in pages/entries 
   or by enabling it as a default option.
 * Thanks,
    -Luis
 * [http://wordpress.org/extend/plugins/wp-property/](http://wordpress.org/extend/plugins/wp-property/)

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

 *  [jamin84](https://wordpress.org/support/users/jamin84/)
 * (@jamin84)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/enable-comments-on-screen-options/#post-3614792)
 * I would also like to find out how to do this.
 *  [jamin84](https://wordpress.org/support/users/jamin84/)
 * (@jamin84)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/enable-comments-on-screen-options/#post-3614801)
 * Ok, figured out 90% of it.
 * Open “class_functions.php” in the wp-property folder. Ln 278, change
 *     ```
       'supports' => array('title','editor', 'thumbnail'),
       ```
   
 * to
 *     ```
       'supports' => array('title','editor', 'thumbnail', 'comments'),
       ```
   
 * Then in admin, allow comments on each property page (Discussion section under
   General Information).
 * Open your “property.php” file in your theme (or copy the one from the plugin 
   and copy it to your theme folder).
 * Add
 *     ```
       <?php comments_template(); ?>
       ```
   
 * Where you want your form and comments.
 * 10% problem is I’m getting all the comments, not just the ones for the individual
   properties. But that should get you started 🙂
 *  [jamin84](https://wordpress.org/support/users/jamin84/)
 * (@jamin84)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/enable-comments-on-screen-options/#post-3614802)
 * Fixed.
 * I was using Twenty Twelve comments template and they incorrectly setup the $args.
 * Change
 *     ```
       $args = array(
               'ID'       => $post->ID,
               'status' => 'approve',
               'order'   => 'ASC'
           );
       ```
   
 * to
 *     ```
       $args = array(
               'post_id'       => $post->ID,
               'status' => 'approve',
               'order'   => 'ASC'
           );
       ```
   
 *  Thread Starter [luigitec](https://wordpress.org/support/users/luigitec/)
 * (@luigitec)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/enable-comments-on-screen-options/#post-3614807)
 * Nice, it worked perfectly.
 * [@jamin84](https://wordpress.org/support/users/jamin84/) I appreciate much the
   help, you are the man!
 *  [discopimp](https://wordpress.org/support/users/discopimp/)
 * (@discopimp)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/enable-comments-on-screen-options/#post-3614830)
 * hello,
 * which file do i make the last changes you indicated ?
 * i cannot find:
 * > $args = array(
   >  ‘ID’ => $post->ID, ‘status’ => ‘approve’, ‘order’ => ‘ASC’ );
 * thx

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

The topic ‘Enable Comments on Screen Options’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-property_c36510.svg)
 * [WP-Property - WordPress Powered Real Estate and Property Management](https://wordpress.org/plugins/wp-property/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-property/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-property/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-property/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-property/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-property/reviews/)

## Tags

 * [Comments](https://wordpress.org/support/topic-tag/comments/)

 * 5 replies
 * 3 participants
 * Last reply from: [discopimp](https://wordpress.org/support/users/discopimp/)
 * Last activity: [12 years, 8 months ago](https://wordpress.org/support/topic/enable-comments-on-screen-options/#post-3614830)
 * Status: not resolved