Title: Missing comment form
Last modified: April 14, 2020

---

# Missing comment form

 *  Resolved [fvbussel](https://wordpress.org/support/users/fvbussel/)
 * (@fvbussel)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/missing-comment-form-3/)
 * I’m using the theme twenty-seventeen and the most recent version of WordPress.
   
   I don’t know if this is a plugin problem or a theme problem. See my blog page.
   2 columns, left:The most recent post and a post navigation, NO comment form. 
   right: Most recent post (Meest recente berichten) and archive. When I click on
   a post in the most recent post area, the post is shown up WITH a comment form
   and the post navigation. I also want the comment form when the page is opened
   with the most recent post. What I’m doing wrong?
 * Thanks in advanced,
    Frans
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmissing-comment-form-3%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Author [gVectors Team](https://wordpress.org/support/users/gvectors-team/)
 * (@gvectors-team)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/missing-comment-form-3/#post-12670941)
 * Hi [@fvbussel](https://wordpress.org/support/users/fvbussel/),
    there should 
   not be any comment form on posts lists, on posts archives and on category pages.
   Comment forms only exist on single post pages. It doesn’t matter you use wpDiscuz
   or the default comment form, it only exists on the single post page. So all is
   correct, you should not see that on your home page, because it’s not a single
   post page, it’s a list of posts, even if the list contains one post per page.
    -  This reply was modified 6 years, 1 month ago by [gVectors Team](https://wordpress.org/support/users/gvectors-team/).
 *  Thread Starter [fvbussel](https://wordpress.org/support/users/fvbussel/)
 * (@fvbussel)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/missing-comment-form-3/#post-12671567)
 * Thank you for your reacton.
    Is it possible to redirect the blog page to the 
   most recent post?
 *  Plugin Support [gVectors Support](https://wordpress.org/support/users/gvectorssupportmember/)
 * (@gvectorssupportmember)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/missing-comment-form-3/#post-12693775)
 * Hi [@fvbussel](https://wordpress.org/support/users/fvbussel/),
 * You should use the following hook to redirect the blog page to the most recent
   post:
 *     ```
       add_action('wp', function () {
           if (is_home()) {
               $args = array(
                   'posts_per_page' => '1',
                   'post_type' => 'post'
               );
               $post = get_posts($args);
               if ($post) {
                   $url = get_permalink($post[0]->ID);
                   wp_redirect($url, 301);
                   exit;
               }
           }
       });
       ```
   
 * The hook should be added in the current active theme** functions.php**_ file._
 *  Thread Starter [fvbussel](https://wordpress.org/support/users/fvbussel/)
 * (@fvbussel)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/missing-comment-form-3/#post-12694177)
 * Thank you very much …that’s what I was looking for.
    -  This reply was modified 6 years, 1 month ago by [fvbussel](https://wordpress.org/support/users/fvbussel/).

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

The topic ‘Missing comment form’ 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
 * 3 participants
 * Last reply from: [fvbussel](https://wordpress.org/support/users/fvbussel/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/missing-comment-form-3/#post-12694177)
 * Status: resolved