2
Hi Kumar,
As far as jumping over the finish form you will have to work on. I guess you just need to figure out how to save the user from the first registration page.
Regarding your CAPTCHA usage you can add the following to your include/registerform.php:
include_once XOOPS_ROOT_PATH."/Frameworks/captcha/formcaptcha.php";
$reg_form->addElement(new XoopsFormCaptcha('Confirmation Code'));
and then to verify the user input in the register.php:
if(@include_once XOOPS_ROOT_PATH."/Frameworks/captcha/captcha.php") {
$xoopsCaptcha = XoopsCaptcha::instance();
if(!$xoopsCaptcha->verify()) {
$stop .= $xoopsCaptcha->getMessage();
}
}