PDA

View Full Version : How to modify the output for humanverify?


veenuisthebest
12-16-2008, 07:04 PM
alright, I figured out how to use vbulletin's human verification system on our custom page as described below:-

require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
$human_verify = $verify->output_token();

//Then on form submit
$vbulletin->input->clean_gpc('r', 'humanverify', TYPE_ARRAY);
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
if (!$verify->verify_token($vbulletin->GPC['humanverify']))
{
eval(standard_error(fetch_error($verify->fetch_error())));
}


And simply having $human_verify in the associated template does the job.

NOW, this creates a predefined humanverify layout in a fieldset with some default text saying Please enter the six letters or digits that appear in the image opposite.

How do I remove that text or how do I modify the xhtml that comes with it??

Thanks

--------------- Added 1229465254 at 1229465254 ---------------

ahh its so easy. Just found there is a set of Human Verification templates. great!

thanks