All of the disqus comments are showing up on all the blog pages

有些话、适合烂在心里 提交于 2019-12-04 15:10:21

I'm not sure how the django module integrates, but from a Disqus point of view it sounds like you're not setting a unique value for the "disqus_identifier" variable on each page.

You need to have the variable instantiated like this:

var disqus_identifier = 'blogpost_<BLOG POST ID HERE>';

before you include the disqus javascript files.

Amazing Angelo

You can try this. In my case, it solved my problem similar to yours. Cheers!

var disqus_url = 'yoursite_dot_com/path_to/id-of-blog-post';

var disqus_identifier = '/id-of-blog-post/';

GF Cheng

I think you should view page source code. Check disqus_url - is it an absolute URL?

In django-disqus often written like this: {% set_disqus_url object.get_absolute_url %} but object.get_absolute_url is your settings.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!