Comments

Out of the box this theme supports 2 comment services. Disqus and Commento.

# config.yml

comments:
  commento:
    enabled: false # you must have a commento account and be on the correct domain. Does not work locally.
  disqus:
    shortname: "" # Your disqus shortcode for example "zerostatic". leave this blank ie "" to disable.

Disqus

Disqus is a comment system for blogs. It is free and easy to install. Unfortunately Disqus is not privacy friendly and loads ALOT of extra cookies and tracking code.

Disqus comments can be enabled on blog posts by adding your disqus shortname to the config.yml

# config.yml

comments:
  disqus:
    shortname: "zerostatic" # Your disqus shortcode for example "zerostatic". leave this blank ie "" to disable.

Commento

Commento is a relatively new comment service. It is a paid service but reports to be privacy friendly.

Commento comments can be enabled on blog posts by adding enabled commento in the config.yml.

# config.yml

comments:
  commento:
    enabled: true # you must have a commento account and be on the correct domain. Does not work locally.

Comments Per Post

Comments can be disabled on a per post basis. In the blog posts frontmatter set comments: false

# collections/_posts/2021-07-20-targeting-keywords-for-traffic.md

---
...
comments: false
---