I tried to implement disqus comments to my website made with django. But when someone tries to login disqus, loading never stops [closed]

So i implemented disqus comments to a new website of mine. When i tried to login my disqus account it said "please wait." and never logins until website refreshed.

Code in website: <div id="disqus_thread" class="disqus-container"></div>

code inside script MY_SRC is my src:


<script>
var disqus_config = function () {
    this.page.url = window.location.href;
    this.page.identifier = window.location.pathname;
    };

    (function() {
    var d = document, s = d.createElement('script');
    s.src = 'MY_SRC';
    s.setAttribute('data-timestamp', +new Date());
    (d.head || d.body).appendChild(s); })();
</script>

I was expecting it to login immediately. It caused some confusion and my friends can not comment

Back to Top