When i disabled the anonymous comment on my blog, people also stopped placing their comments. It might be because the people who commented were actually bots? Maybe or maybe not. Now, i got freaked because people really stopped commenting, as in zero comments. So, i started to look for ways to make post some comments again. I tried installing some plugin that allow users from other blogs like WordPress or other sites to use their login to comment on my blog using the OpenID technology. Here's the list of plugin that i have installed in addition to the builtin options:
AOL/AIM
Yahoo
WordPress
But still, only a few commented. Now, I'm trying to enable reCaptcha hopefully people might come back and start to comment. If you are using MT4.1, you might need this. Otherwise, if you are using an older version then visit josh carter's blog for a workaround.
Enable reCaptcha on your Movable Type 4.1 blog
- Get a public and a private key from the reCaptcha website
- Get copy of the reCaptcha plugin from your mt4 installation folder. Its located at /extras/examples/plugins/reCaptcha from your mt4 folder
- Paste them to the plugins folder at /plugins/reCaptcha inside your mt4 folder
- There is a README file read it for instructions.
- On your blog go to Preferences > Plugins
- Click on the the reCaptcha and enter your Public and Private keys you had when you registered at their website
- Click on Save Changes
- Go to your blog Preferences > Blog Settings > Comment
- Scroll dow below to the Comment Display Options
- Change the Captcha Provider from None to reCaptcha
- Save Settings
- Go to your blog Preferences > Blog Settings > Spam
- Check if the spam slider is at zero. If its not return it to zero, otherwise you will have to moderate all the comments again.
- Go to Design > Templates
- Click on Template Modules
- From the README file: Edit Comment Form template, so it renders MTCaptchaFields unconditionally. In practice, this means replacing these lines
<MTIfNonEmpty tag="MTCaptchaFields">
<MTIfCommentsAccepted><MTIfRegistrationAllowed><MTElse><$MTCaptchaFields$></MTIfRegistrationAllowed></MTIfCommentsAccepted>
<div id="comments-open-captcha">
</div>
</MTIfNonEmpty>
to these lines:
<MTIfNonEmpty tag="MTCaptchaFields">
<div id="comments-open-captcha">
<$MTCaptchaFields$>
</div>
</MTIfNonEmpty> - Click on Index Templates
- From the README file, Edit Javascipt index template, to remove these lines of code which calls delayShowCaptcha:
<MTIfNonEmpty tag="MTCaptchaFields">
captcha_timer = setInterval('delayShowCaptcha()', 1000);
</MTIfNonEmpty> - Save and Rebuild you blog.