Image Upload Form is Disabling Comment Addition

Well, this is definitely a little hackish but what I ended up doing was changing the action on the form to “[mysite url]/wp-comments-post.php”. Then I took advantage of a few action hooks in wp-comments-post.php to hijack that page: add_action(‘pre_comment_on_post’, array($this, ‘process_image_upload’)); And if anyone is curious as to how I wrote the process_image_upload function (which … Read more

Why might a comment turn red on approval?

Got it figured, so I’m closing this question out. Here was the problem: on comment approval, I had some custom stuff hooked, and this custom stuff was throwing an error. This error was being included as part of the comment approval’s AJAX response. It turs out that on listings pages in the admin, if WordPress … Read more

Migrate comments to Disqus

During the process of installing the Disqus Comment System plugin on WordPress, it actually allows you to export your comments to Disqus, as shown in the screenshot above. And they’ve quite a helpful documentation as well: Install Disqus on WordPress (self-hosted) Exporting comments from WordPress to Disqus Not to mention the numerous ‘how-to’ videos on … Read more