disqus

How to get all the comments from Disqus?

坚强是说给别人听的谎言 提交于 2019-12-03 07:54:32
问题 I want to fetch all the comments on CNN whose comment system is Disqus. As an example, http://edition.cnn.com/2013/02/25/tech/innovation/google-glass-privacy-andrew-keen/index.html?hpt=hp_c1 The commenting system requires us to click on "load more" so that we can see more comments. I have tried using php to parse the html but it was not able to load all the comments since the javascript is used. So i am wondering if anyone has a more convenient way to retrieve all the comments from a specific

Creating a website forum/discussion group with Disqus?

…衆ロ難τιáo~ 提交于 2019-12-03 07:44:08
问题 Disqus seems increasingly popular for comments on website blogs. It is impressive what a good job it does integrating with Facebook, Twitter, et al. For those that are familiar with Disqus and its API, would it possible to create a forum/dsicussion group where the visitor doesn't just comment on existing topics but can create topics themselves using Disqus? 回答1: Disqus provides comment threads for any URL, whether that URL is for a blog post or for a forum topic. If you provide a way for

Creating a website forum/discussion group with Disqus?

萝らか妹 提交于 2019-12-02 20:28:42
Disqus seems increasingly popular for comments on website blogs. It is impressive what a good job it does integrating with Facebook, Twitter, et al. For those that are familiar with Disqus and its API, would it possible to create a forum/dsicussion group where the visitor doesn't just comment on existing topics but can create topics themselves using Disqus? Disqus provides comment threads for any URL, whether that URL is for a blog post or for a forum topic. If you provide a way for users to create some kind of page (whether you call it a blog post or a forum topic), Disqus will then provide a

Disqus comment form not displayed on self hosted Wordpress site

谁说我不能喝 提交于 2019-12-01 22:20:48
问题 I have followed all instructions on installing Disqus commenting system on my website but the old comment form is still visible. My question is: is <?php comment_form(); ?> enough to display the comments or there needs to be something else on the single.php page. What else should I be taking care? I don't have any other commenting engine installed. Thank you 回答1: OK I found it. Instead of using the <?php comment_form(); ?> I had to use <?php comments_template(); ?> . That did the trick 回答2:

Disqus comment form not displayed on self hosted Wordpress site

帅比萌擦擦* 提交于 2019-12-01 19:03:16
I have followed all instructions on installing Disqus commenting system on my website but the old comment form is still visible. My question is: is <?php comment_form(); ?> enough to display the comments or there needs to be something else on the single.php page. What else should I be taking care? I don't have any other commenting engine installed. Thank you OK I found it. Instead of using the <?php comment_form(); ?> I had to use <?php comments_template(); ?> . That did the trick install woody snippets on your site insert a new php snippet: comments_template(); ?> go in widget select custom

Javascript to access Disqus comment textbox?

不羁的心 提交于 2019-12-01 12:17:30
问题 I am working on a browser extension which should allow me to access comments/posts inside textboxes. A lot of sites now use Disqus as a way to comment, but I can't figure out a way to access the Disqus comment box (the Disqus API doesn't tell much either) as text is being entered. Anyone know of a way to access it? 回答1: The best way to figure it out is to begin analyzing how Disqus API does their comment system. Your best friend at this point is the Inspector (Developer Tools) that comes with

Getting Equal Height Columns jQuery Plugin and Disqus to Play Nice

混江龙づ霸主 提交于 2019-12-01 10:40:55
I decided that a JS solution ( The EqualHeights Plugin ) to equal height columns would probably be best in this case, but I'm having trouble with Disqus. As you probably already know, Disqus loads asynchronously. That's great and all (well, not really), but because the comments are loading after everything else, including the plugin, they're being chopped off. I can't figure out how to get around this. I actually tried a CSS "hack" to get equal height columns, hoping it wouldn't conflict with Disqus, but I didn't have any luck there either. Thanks in advance, guys. You're always invaluable

Disqus SSO integration on website

浪子不回头ぞ 提交于 2019-12-01 03:23:28
问题 We're including in our website the SSO feature on Disqus. Following the Disqus documentation here http://help.disqus.com/customer/portal/articles/526768 and here http://help.disqus.com/customer/portal/articles/236206 We put our login button in place, and once a user is already logged in in our site he is able to comment with his personal nickname. As displayed, and already mentioned above, by this image in the article http://content.disqus.com/docs/sso-button.png We see our button correctly

How to remove Disqus reaction from the counter?

拜拜、爱过 提交于 2019-12-01 03:12:34
Two questions for Stackoverflow ninjas: I have a blog using Disqus. However, the theme I'm using do not have space to have the 'Reactions' (# of Twitters), just have the space for the numbers of the Comments. OK, Basically I do not have space enough to stay with this 'Reactions' provided for Disqus. Does anyone knows how could I remove just the 'Reactions" counts from Disqus? The new Disqus put a box with "Your site is using the new Disqus. Check the Disqus 2012 F.A.Q. or visit our support page for help." message and I would love to remove it. Does anyone knows how to do it? Edit 2: We've made

inline javascript within handlebars template

不问归期 提交于 2019-12-01 03:08:41
Is there no way to have an inline script within a Handlebars template? <script type="text/x-handlebars"> I'm a row of type "foo" <script type="text/javascript">alert('hi');</script> </script> When the above template renders, the inline script is removed. What I am trying to do is include the disqus widget on a page. The widget is basically some markup + disqus script. The widget is to be included within a sub-view of my app. The subview is not visible by default but is displayed as per some logic in my Ember app code. ​ You'll have to wrap that widget in a custom Ember.View to handle