Skip to content

Instantly share code, notes, and snippets.

@nternetinspired
Last active February 24, 2022 17:20
Show Gist options
  • Star 77 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save nternetinspired/7482445 to your computer and use it in GitHub Desktop.
Save nternetinspired/7482445 to your computer and use it in GitHub Desktop.
Load Disqus comments only on demand if you give a shit about page weight and your visitors. Even with no comments, i.e. an empty comment form, calling Disqus will load an extra 226Kb. If your page has comments this can be far higher. This Gist accompanies my blog post: http://internet-inspired.com/wrote/load-disqus-on-demand/
// Requires jQuery of course.
$(document).ready(function() {
$('.show-comments').on('click', function(){
var disqus_shortname = 'YOUR-DISQUS-USERNAME'; // Replace this value with *your* username.
// ajax request to load the disqus javascript
$.ajax({
type: "GET",
url: "http://" + disqus_shortname + ".disqus.com/embed.js",
dataType: "script",
cache: true
});
// hide the button once comments load
$(this).fadeOut();
});
});
<!-- An element a visitor can click if they <3 comments! -->
<button class="show-comments">Load Disqus comments</button>
<!-- The empty element required for Disqus to loads comments into -->
<div id="disqus_thread"></div>
@Alpha0007
Copy link

  1. How to make it open in a new window/pop up window ?
  2. How this code can be changed for using multiple threads on same page?

@Averyy
Copy link

Averyy commented Jun 9, 2014

Amazing, thanks for this.

@fredericmohr
Copy link

This is awesome - finally I found a solution that works with Content-Security-Policies. My attempts to get Disqus with the jQuery load() function all resulted in a unsafe-eval violation.

Thank you so much!

@LaGross
Copy link

LaGross commented Feb 28, 2015

Fixed: I fixed the problem. The problem was that blogger redirects to the country specific blogger domain. That's when disqus looses the thread-url. I needed to use the disqus variables from their original code (https://help.disqus.com/customer/portal/articles/888340-manually-adding-a-disqus-gadget-to-blogger). The second problem was the embed.js script. I changed it to blogger_item.js and now everything works fine.

(original question)
When I use this code for my blog, commens which already have been postet to it are not displayed. Somehow Disqus can not make the reference to the previous comments. Is there a way to fix this? Can I use the page URL as parameter somehow? I created a test-blog and there it works. Only difference: my shortname. the shortname for my real blog has "-" in it. Can it effect it? Do I need to escape them?

@euler0
Copy link

euler0 commented Jun 4, 2015

It's more practical to use protocol-relative URL, '//' instead of 'http://'. Disqus also suggests it in their template code.

@seb86
Copy link

seb86 commented Feb 6, 2017

How does this work on WordPress blog posts?

@rrecinos
Copy link

rrecinos commented Feb 8, 2017

@seb86 you could just place the HTML code into the single.php file and the SCRIPT into the footer.php and that should do it.

@seb86
Copy link

seb86 commented Mar 22, 2017

@rrecinos Do I not have to specify a post ID?

@zenbug
Copy link

zenbug commented Sep 15, 2017

Possible to make that button toggle comments on and off?

@shuibaco
Copy link

Thank you very much 👍

@JamesSkemp
Copy link

Piggybacking off of euler0's comment, in this day and age you really just want to use HTTPS instead of protocol-relative.

See for example https://jeremywagner.me/blog/stop-using-the-protocol-relative-url

@MediaMaquina
Copy link

Why does it has to be jquery? Can't JavaScript do this? Since it's to reduce bloat might as well do it in pure JavaScript.

Copy link

ghost commented Mar 19, 2018

How to specifiy postID etc... ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment