plusjade / jekyll-bootstrap

The quickest way to start and publish your Jekyll powered blog. 100% compatible with GitHub pages.
jekyllbootstrap.com
MIT License
3.35k stars 1.71k forks source link

The built-in Disqus now requires visitors to load unsafe scripts on https in order to comment. #306

Open AetherCollective opened 8 years ago

AetherCollective commented 8 years ago

The built-in Disqus now requires visitors to load unsafe scripts on https in order to comment. This didn't use to be necessary. If users don't do this step, they don't even see the Disqus comment box at the bottom of my page. It appears Disqus is not https compatible?

Duroktar commented 7 years ago

I had the same problem and was able to fix it by modifying -

project_dir/_includes/JB/comments_providers/disqus line 10 from dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js'; to dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';

I don't know if this is the "right" way but it did work for me.

Scott D.

MMAMELEE commented 7 years ago

@Duroktar are you using Social Engine? Where did you find this file? I can't find anything with project_dir

MMAMELEE commented 7 years ago

@Duroktar I found it...thank you!

Duroktar commented 7 years ago

Just noticing this now, sorry. Glad I was able to help someone :)