Comments

By default, WordPress comments are disabled for Nova brands.

To enable comments, remove the __return_false callback from the comments_open filter in the brand's pmc-nova configuration at config/plugins/class-pmc-nova.php.

remove_filter( 'comments_open', '__return_false', 9 );

It is important to remove the filter, rather than add __return_true at a higher priority, as doing so would override both the post-level control over comments and the Core option to disable comments after a certain number of days have passed since the post was published.