Quote:
Originally Posted by smirkley
Yes, this seems to do the trick for FireFox, but the human verification still does not show up on any site pages using IE(9).
Interesting though is that the log/reg popup layout is slightly out of kilt now and only on the cms page, but the human verification displays now on cms. (untested atm)
|
Am working on that update this morning, that fix I issued was wrong

It's that same problem of the script (this time the human verify) only being allowed once on a page. I do need to use the THIS_SCRIPT method so it doesn't clash elsewhere.
To add the CMS page change that code in the jqt_logreg template from
PHP Code:
<vb:if condition="THIS_SCRIPT == 'index' || THIS_SCRIPT == 'adv_index'">
<vb:if condition="$vboptions['jqt_suite_logreg_huver'] AND $vboptions['hv_type'] AND $vboptions['regimagetype']">
<div id="hummer" style="max-width:65%;">
{vb:raw human_verify}
</div>
</vb:if> </vb:if>
Replace with
PHP Code:
<vb:if condition="THIS_SCRIPT == 'index' || THIS_SCRIPT == 'adv_index' || THIS_SCRIPT == 'vbcms'">
<vb:if condition="$vboptions['jqt_suite_logreg_huver'] AND $vboptions['hv_type'] AND $vboptions['regimagetype']">
<div id="hummer" style="max-width:65%;">
{vb:raw human_verify}
</div>
</vb:if> </vb:if>