Great mod. I installed this on vb 3.6.2 Unfortunately the nospam field didnt show on my registration page. I looked throught this thread and found a template edit fix which is shown below. Did a search in my registration template and no code alteration had been made. Added the 1 line of code and all is now working. Thanks very much.
Quote:
I think what you do is, go into the Edit template, Register templates, open the one called simply "register".
Then do a search for regimagecheck and you will see:
Code:
<if condition="$show['regimagecheck']">
<fieldset class="fieldset">
I just added $nospamfield above the line like this:
Code:
$nospamfield
<if condition="$show['regimagecheck']">
<fieldset class="fieldset">
|