This answer here fixed it for me:
https://wordpress.stackexchange.com/a/243732/138177
add_filter( 'comments_open', 'my_comments_open', 10, 2 );
function my_comments_open( $open, $post_id ) {
$post = get_post( $post_id );
if ( 'myCustomPostType' == $post->post_type )
$open = true;
return $open;
}
Related Posts:
- Why are the comments disabled by default on my custom_post_types?
- Why are comments and trackbacks still getting through for custom post types?
- Display Authors Comments on Profile Page
- List all posts commented by current user
- Custom Comment Types
- modify all posts of a category to “no comments allowed”
- Custom comment status possible?
- feed links for custom post type pages
- Seperating custom post type comments from regular blog posts comments
- Add comments meta fields to comments metabox on post edit screen
- Exclude post_type from admin comments_list
- Recent comments on author page?
- wp_query and comment_parent – select only posts with top level comments
- changing default comment form arguments [duplicate]
- Comment moderation on custom post types
- How could I create a ‘private comments’ section on a custom post type?
- Disable comments from showing up public for Custom Post Type
- Custom Post Type loops and Disqus
- “Allow Comments” box cannot be checked
- Separate comment section for post type in dashboard
- Count all comments of a custom post type
- custom comments on specific post type
- Insert data on comment post
- get_comments not working on custom post types
- Custom Post Type Set Comments ON by default without show METABOX
- WordPress comments_open for specific user role or post type
- Add custom field in comments form
- Create another comment system for CPT
- How can the recipients and content for comment email notifications on a custom post type be changed?
- Convert comments to Custom Post Type
- How to assign classes to all elements?
- custom comments form for custom post type
- What functions does WordPress use for filtering / sanitizing comments?
- comment_notification_text filter for custom post type
- get comments by current user inside page template
- User-submitted reviews of different custom post types
- Check if user has comment on current post
- Enable comments on custom page type – option not showing in “customize” for theme
- Allow anonymous comments just in a custom post type
- duplicate comment section functionality and call it something else for custom post types
- Send email messages after comment was submitted
- comments hooks on custom post type
- custom comment fields on CPT
- unapprove comments on custom post type
- Enable comments for post when comments meta box removed
- Get the latest comment from a custom post type where depth = 1?
- Why will comments not remain open on custom post types?
- How to add comments to my custom post type but hide it from default WordPress Comments section?
- How to change the comments form title based on post type
- Comments on posts with new custom post type redirected to another post
- Display custom posts, ordered by most commented, without duplicates
- get comments for custom post type
- How to create a discussion post when a custom post is created?
- Adding second comments.php for reviews
- Custom post type updated to support comments, yet comments don’t appear
- Comments not enabled for custom post types
- Turn off comments for given CPT checkbox?
- Author profile comments system
- Custom post type: can’t enable comments by default
- Comment moderation with disqus comments
- add comments custom fields after user is logged in
- Comments are not working on Custom Post Type
- Error 403 when posting comments to a custom post type from a different page
- Comments not working (error not allowed) on posts with custom post status
- Is there a way to get N number of WYSIWYG editors in a custom post type?
- How to throw error to user when saving post
- Display text if current user has written 1 or more posts in a custom post type
- Pull Two Posts Into Custom Post Type `single-cpt.php`
- Compare 3 custom fields and sort by oldest
- How to select one major category (or custom taxonomy) for a custom post type?
- how to use two permalinks for one custom post type
- current-menu-item not working with custom post type
- Taxonomy Url with Custom post type prefix re-write rule
- wp_nav_menu() mark current item ancestor of custom post type
- WordPress count child posts of each parent custom post type and use in json array for google maps jquery plugin
- register_post_type name character limit
- Registering post type doesn’t show results on front-end
- How to do WP_Query with two meta fields with orderby clause
- WP CPT template not found when another CPT is active/public = true
- Custom query at top of archive search page, arguments are overridden
- How to make permalink structure %category%/%postname%/ work for custom post type?
- Display custom post function ONLY if it has a value [closed]
- Include php on a specific page template
- Tags not working in my custom post type
- After creating Custom post type by user delete old one
- Custom wordpress loop
- page template with custom post type loop case page duplication
- Translate website without duplicate custom post
- Add custom template ‘sub-page’ to Custom Post type?
- WP_List_Table Inside Metabox Not Working on Clicking Search Button
- Subset of Custom Post Type From Admin Menu Based on Meta Data
- Add an array as post content dynamically
- How to save post_status using action save_post?
- Changing custom post_type when publishing
- Show custom post type in archive page by category
- Pop up showing same content on all posts display.
- Collection of fields in a single post
- Display and Allow users to edit their own profiles
- Are custom posts included when getting a categories’ posts?
- Add post id to url instead of WordPress default -2 suffix