Adding Disqus Comments To Jekyll Blog
TAGS:
Jekyll Blog Comment Disqus
How To Add Disqus Comments To Jekyll Blog
Click the
setting ring
in the top right corner.Click
Add Disqus To Site
.Then, Click
Start Using Engage
.Enter the
site name
.Enter your disqus
unique url
.Choose the
category
.Click
Next
.Click
My site is just a personal site
.You can
Skip
next two step.Then, Choose
Universal Code
.Then
copy
the next code.
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
this.page.url = "{{site.url}}{{page.url}}";
this.page.identifier = "{{ page.id }}";
};
(function() { // Replace your_unique_disqus_id with your true one.
var d = document, s = d.createElement('script');
s.src = '//your_unique_disqus_id.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
And
paste
it in thebottom
of the_layouts/post.html
.Don’t forget replacing
your_unique_disqus_id
with you actual one.Then
copy
the next code.
<script id="dsq-count-scr" src="//your_unique_disqus_id.disqus.com/count.js" async></script>
And
paste
it in thebottom
of the_layouts/default.html
before</body>
.Also don’t forget replacing
your_unique_disqus_id
with you actual one.
Now, Take a look to this tutorial video.