Title: Comments
Last modified: August 22, 2016

---

# Comments

 *  Resolved [jdesignz](https://wordpress.org/support/users/jdesignz/)
 * (@jdesignz)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/comments-193/)
 * Hi, thanks for this great plugin it works like a charm. But one more thing, I
   was wondering how will I able to enable comment system every time there’s a new
   post? Seems like it wasn’t included (yet?) on the plugin script. I had to manually
   enable them thru admin console which is a lot pain in the arse. Thanks in advance.
 * Jhay
 * [https://wordpress.org/plugins/import-tweets-as-posts/](https://wordpress.org/plugins/import-tweets-as-posts/)

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

 *  Plugin Author [Chandan Kumar](https://wordpress.org/support/users/chandanonline4u/)
 * (@chandanonline4u)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/comments-193/#post-5354873)
 * Thanks for your words Jhay. You can change it from “import-tweets-as-post.php”.
   Remove/Comment the line no 266:
    Change the following:
 *     ```
       $data = array(
          'post_content'   => $tweet_text,
          'post_title'     => $twitter_post_title,
          'post_status'    => $twitter_post_status,
          'post_type'      => $post_type,
          'post_author'    => 1,
          'post_date'      => $publish_date_time,
          'comment_status' => 'closed'
        );
       ```
   
 * To
 *     ```
       $data = array(
          'post_content'   => $tweet_text,
          'post_title'     => $twitter_post_title,
          'post_status'    => $twitter_post_status,
          'post_type'      => $post_type,
          'post_author'    => 1,
          'post_date'      => $publish_date_time
        );
       ```
   
 * This will help you in importing future tweets with comment status as opened. 
   You can change your existing tweet’s post comment status by mysql query.
 * Let me know if this helps you.
 *  Thread Starter [jdesignz](https://wordpress.org/support/users/jdesignz/)
 * (@jdesignz)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/comments-193/#post-5354880)
 * That gladly work without getting sweaty. Thanks you very much!
 * Oh, for the SQL thingy, here’s what I did (via phpAdmin)
 * > UPDATE wp_posts SET comment_status = ‘open’;
 * Again, thanks!
 * Jhay

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

The topic ‘Comments’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/import-tweets-as-posts_cedae3.svg)
 * [Import Tweets as Posts](https://wordpress.org/plugins/import-tweets-as-posts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/import-tweets-as-posts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/import-tweets-as-posts/)
 * [Active Topics](https://wordpress.org/support/plugin/import-tweets-as-posts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/import-tweets-as-posts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/import-tweets-as-posts/reviews/)

## Tags

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

 * 2 replies
 * 2 participants
 * Last reply from: [jdesignz](https://wordpress.org/support/users/jdesignz/)
 * Last activity: [11 years, 8 months ago](https://wordpress.org/support/topic/comments-193/#post-5354880)
 * Status: resolved