Forums

chronoform Captcha image doesn't show

joomir 11 Mar, 2015
I am using joomla 3.3 and chronoform version 5 and i have custom code with captcha plugin below:
<div style="" id="chrono_verification1_container_div" class="ccms_form_element cfdiv_text">
<label>Enter the code</label>
<input type="text" name="chrono_verification" value="" title="" class="chrono_captcha_input" size="5" maxlength="5" />
{chronocaptcha_img}
<div class="clear"></div>
<div id="error-message-chrono_verification"></div>
</div>
but it show {chronocaptcha_img} and not show Captcha image. what is problem?
joomir 11 Mar, 2015
I found problem myself.
in chronoform version 5 you must use this code:
<div style="" id="chrono_verification1_container_div" class="ccms_form_element cfdiv_text">
  <label>Enter the code</label>
  <input type="text" name="captcha" value="" title="" class="chrono_captcha_input" size="5" maxlength="5" />
  {captcha_img}
  <div class="clear"></div>
  <div id="error-message-chrono_verification"></div>
</div>
This topic is locked and no more replies can be posted.