bbAntiSpam: Discuss how to stop web spam

The forum is retired.

bbAntiSpam Forum Index - Textual Confirmation - Visual confirm off, textual off. Anyway around it?

Author Message
ArcticCat



Joined: 17 Feb 2007
Posts: 2

Posted: Sat Feb 17, 2007 4:03 pm    Post subject: Visual confirm off, textual off. Anyway around it?  

First, thanks for a great creation.

Is there a way to turn off the visual confirm and keep the textual confirm on? Right now if I check no to the visual confirm in the admin config page, the textual goes bye bye as well.

Thanks for the help, I'll check back often for answers and for replies.


Ken - ArcticCat
gbr1918



Joined: 17 Feb 2007
Posts: 5
Location: England

Posted: Sat Feb 17, 2007 10:36 pm    Post subject:  

Sounds like there's a misplaced "if..." in your php somewhere. I don't have the same problem. I'm using 20.0.22, minimal mods (except for TC, which is totally the cat's pyjamas).
Dave

Umm. 'cat's pyjamas' = 'really, really good' Possibly not a universal phrase! Smile
_________________
Always tack on a header.
admin
Site Admin


Joined: 18 Apr 2006
Posts: 805
Location: Saint-Petersburg, Russia

Posted: Mon Feb 19, 2007 2:51 am    Post subject:  

Please re-check the file "templates/subSilver/profile_add_body.tpl". The correct order of strings:
Code:

<!-- Visual Confirmation -->
<!-- BEGIN switch_confirm -->
...
<!-- END switch_confirm -->
<!-- BEGIN switch_textual_confirm -->
...
<!-- END switch_textual_confirm -->

I suppose in your case the order is a bit different, something like
Code:

<!-- Visual Confirmation -->
<!-- BEGIN switch_confirm -->
...
<!-- BEGIN switch_textual_confirm -->
...
<!-- END switch_textual_confirm -->
<!-- END switch_confirm -->

Please check.
_________________
Oleg Parashchenko, bbAntiSpam
Do you love our tools? Please sponsor further development!
ArcticCat



Joined: 17 Feb 2007
Posts: 2

Posted: Wed Feb 21, 2007 8:58 pm    Post subject:  

Looks like I did cross it up, any takers on how to straighten it out...


Code:

<!-- Visual Confirmation -->
   <!-- BEGIN switch_confirm -->
   <tr>
      <td class="row1" colspan="2" align="center"><span class="gensmall">{L_CONFIRM_CODE_IMPAIRED}</span><br /><br />{CONFIRM_IMG}<br /><br /></td>
   </tr>
   <tr>
     <td class="row1"><span class="gen">{L_CONFIRM_CODE}: * </span><br /><span class="gensmall">{L_CONFIRM_CODE_EXPLAIN}</span></td>
     <td class="row2"><input type="text" class="post" style="width: 200px" name="confirm_code" size="6" maxlength="6" value="" /></td>
   </tr>
   <!-- END switch_confirm --><!-- BEGIN switch_textual_confirm -->
   <tr>
     <td class="row1"><span class="gen">{TEXTUAL_CONFIRMATION_QUESTION} * </span><br /><span class="gensmall">{L_TEXTUAL_CONFIRMATION_EXPLAIN}</td>
     <td class="row2"><input type="text" class="post" style="width: 200px" name="tc_answer" size="25" value="" /></td>
   </tr>
   <!-- END switch_textual_confirm -->


Thanks,

Ken
admin
Site Admin


Joined: 18 Apr 2006
Posts: 805
Location: Saint-Petersburg, Russia

Posted: Thu Feb 22, 2007 3:11 am    Post subject:  

Hi!

Change
Code:
<!-- END switch_confirm --><!-- BEGIN switch_textual_confirm -->

to
Code:
<!-- END switch_confirm -->
<!-- BEGIN switch_textual_confirm -->

(From everything on one line to two lines.)
_________________
Oleg Parashchenko, bbAntiSpam
Do you love our tools? Please sponsor further development!

Ok.