How to remove Oxwall standard captcha from join form (Updated)
- Ebenezer Obasi
- February 20, 2014
- (0 Comments)
![]() |
Image credit: Oxwall Software Documentation |
This mod will remove captcha from your join form.
In your Oxwall installation path, navigate to /ow_system_plugins/base/controllers
and edit join.php
with a code editor.

- In line 893 to 903 (Oxwall 1.5 & 1.6) or line 913 to 923 (Oxwall 1.7) find and replace
if ( !empty($captchaField) && $captchaField instanceof FormElement )
{
$captchaField->setName('captchaField');
$this->addElement($captchaField);
$displayCaptcha = true;
}
//$captchaField = new CaptchaField('captchaField');
//$this->addElement($captchaField);
$controller->assign('display_captcha', $displayCaptcha);
with this code:
Please, see the above image for reference.
- Now, locate the code below in line 909 to 912 (Oxwall 1.5 & 1.6) or line 929 to 932 (Oxwall 1.7)
if ( !empty($captchaField) && $captchaField instanceof FormElement )
{
$captchaField->setValue(null);
}
replace this code with:
- Save your changes and proceed to
/ow_system_plugins/base/views/controllers
in your Oxwall installation folder. - Edit
join_index.html
and find the following code in line 117 to 128 (Oxwall 1.5 & 1.6) or line 112 to 123 (Oxwall 1.7)
{if $display_captcha}
<tr class="ow_tr_first"><th colspan="3">{text key="base+questions_section_captcha_label"}</th></tr>
<tr class="{cycle name=captchaField values='ow_alt1,ow_alt2'} ow_tr_last" >
<td colspan="3" class="ow_center">
<div style='padding:10px;'>
{input name='captchaField'}
<div style="height:1px;"></div>
{error name='captchaField'}
</div>
</td>
</tr>
{/if}
See image below for reference.

As with the tradition of every custom mod done to the Oxwall core files, you need to clear your cache for your changes to go live.
Share this:
- Click to share on Twitter (Opens in new window)
- Click to share on Facebook (Opens in new window)
- Click to share on Google+ (Opens in new window)
- Click to share on LinkedIn (Opens in new window)
- Click to share on Reddit (Opens in new window)
- Click to share on Pinterest (Opens in new window)
- Click to share on Tumblr (Opens in new window)
- Click to share on Pocket (Opens in new window)
- TAGS :
- Oxwall , Oxwall Software, web development, webmaster
Recieve Free Email Updates!
Subscribe to get new updates instantly delivered to your inbox. Select the specific category you want to recieve updates on and enter your email address below.
*A confirmation message will be sent to you, login to your e-mail account and click on the confirmation link to start enjoying this service.
Get the latest news on your Android mobile, Download our Android App
Related Posts

Correcting Update Error in Oxwall 1.6 (Solved)
- oxwall
- January 14, 2014

Responsive AddThis Share with Whatsnext and Recommended Posts Widget
- Technology
- January 9, 2014

How to set up a mobile version of your blog or website in five seconds.
- Blogging
- January 27, 2013
How-To: Create a Custom Page for Logged in users Only in Oxwall
- oxwall
- December 22, 2014

All-In-One Social Media Widget With Cute Subscription Form
- Technology
- August 31, 2013

How to Use the Nrelate Related Content Widget on Blogger
- Blogging
- November 23, 2013