How to turn comments off for a post/article

Hi all,

The articles/post we use on Ghost are sometimes subject to legal proceedings and we can’t support comments. Is there a way to have optional comments based on the blog post?

Kind regards,
Jordan

Your best bet for this is the has helper! Add an interal tag to your post (e.g. #no-comments), and then surround your comment block with:

{{^has tag="hash-no-comments"}}
  {{!-- comment block goes here --}}
{{/has}}
5 Likes

Internal tags are so powerful :muscle:

1 Like