How to disable comments in specific pages?

In your layout (https://github.com/zzossig/hugo-theme-zzo/blob/2e0f52a48f7aaa31f19b09a65e020744531fba3d/layouts/partials/comments/comments.html), something like:

    {{ if not .Params.noComment }}
        Comment
    {{ end }}

In your frontmatter (yaml):

noComment: true
4 Likes