Hello everyone!
Just a small note to anyone subscribed to the feed: Ocean Mist has been given an update to version 1.2.1. In this version, I’ve added Captcha support to the comment template for both versions of the theme. If you wish to add this to your existing installation, just follow the directions below!
In your comments template:
find
<div class="entry">
<p>Your response:<br><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
{if logged_out}
<p><input type="checkbox" name="save_info" id="save_info" value="yes" {save_info} />
<label for="save_info" id="label-save">Remember my personal information</label></p>
{/if}
<p><input type="checkbox" name="notify_me" id="notify_me" value="no" {notify_me} />
<label for="notify_me" id="label-notify">Notify me of follow-up comments?</label></p>
<p><input name="preview" type="submit" id="preview" tabindex="6" value="Preview Comment" /> <input name="submit" type="submit" id="submit" tabindex="7" value="Submit Comment" /></p>
</div>
replace with
<div class="entry">
<p>Your response:<br>
<textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
{if captcha}
<p><label for="captcha">Please enter the word you see in the image below:</label><br />{captcha}<br clear="all" /><input type="text" name="captcha" value="{captcha_word}" size="22" tabindex="5" /></p>
{/if}
{if logged_out}
<p><input type="checkbox" name="save_info" id="save_info" value="yes" {save_info} />
<label for="save_info" id="label-save">Remember my personal information</label></p>
{/if}
<p>
<input type="checkbox" name="notify_me" id="notify_me" value="no" {notify_me} />
<label for="notify_me" id="label-notify">Notify me of follow-up comments?</label></p>
<p><input name="preview" type="submit" id="preview" tabindex="6" value="Preview Comment" /> <input name="submit" type="submit" id="submit" tabindex="7" value="Submit Comment" /></p>
</div>
Easy fix, so it should go smooth!
Posted by: Chris
12 comments already...
Categories: