You will have to bear with me as I am not a coder by any means.
In vBulletin it uses "style templates" to call human verification.
This is the style template that currently exists for my site (using the old version of recaptcha)
How would I modify this to use the new version?
<div class="blockrow">
<label for="recaptcha_challenge_field">{vb:rawphrase image_verification}</label>
<input id="hash" type="hidden" name="{vb:raw var_prefix}[hash]" value="{vb:raw humanverify.hash}" />
<vb:if condition="$humanverify['load_js']">
<script type="text/javascript">
var RecaptchaOptions = {
theme : '{vb:raw humanverify.theme}',
callback: function() {document.getElementById('recaptcha_response_field').tabIndex = 1;}
<vb:if condition="$humanverify['langcode']">,lang : '{vb:raw humanverify.langcode}'</vb:if>
};
function reloadRecaptcha(){
if( typeof(Recaptcha) != 'undefined')
{
Recaptcha.create("{vb:raw humanverify.publickey}", "recaptcha_block", RecaptchaOptions);
}
}
</script>
</vb:if>
<div id="recaptcha_block">
<vb:if condition="$humanverify['load_js']">
<vb:if condition="$show['recaptcha_ssl']">
<vb:else />
</vb:if>
</script>
</vb:if>
</div>
<noscript>
<vb:if condition="$show['recaptcha_ssl']">
<vb:else />
</vb:if>
<textarea name="recaptcha_challenge_field" rows="3" cols="40" tabindex="1"></textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge" />
</noscript>
</div>