vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Conditional Template Problem (https://vborg.vbsupport.ru/showthread.php?t=250935)

NP Carling26 09-21-2010 08:30 PM

Conditional Template Problem
 
Basically we are using a One touch spam and clean modification from this site to clear spam bots and other such members from our forum. As it is sometimes necessary to delete accounts with 0 posts for such things as spamming in private messages, I tried to add a conditional to fit the requirements which enables this hack.

So far this is what I have in the template of MEMBERINFO:

PHP Code:

<if condition="is_member_of($bbuserinfo, 5,6,7)">
<if 
condition="$bbuserinfo['posts'] <= 50">
<
li class="thead"><a href="misc.php?$session[sessionurl]do=spamcleanconfirm&amp;u=$userinfo[userid]">$vbphrase[spammer_ban_member]</a></li>
</if>
</if> 

Basically the less than/equal to 50 posts doesn't work. It will either show the modification on everyone's page or not show it at all if I make it "<51" instead.

If anyone could give me a solution that would be fantastic! Also there is a condition that the user has to be registered 30 days or less and if you could help me with that it would be amazing, if not don't worry about it too much :)

Also if it's worth mentioning we are running 3.8.4 patch 2.

kh99 09-22-2010 12:02 AM

Quote:

Originally Posted by NP Carling26 (Post 2101585)
Basically the less than/equal to 50 posts doesn't work. It will either show the modification on everyone's page or not show it at all if I make it "<51" instead.

I really don't know why <= 50 would do something different than <51, but I do think what you want is to check $userinfo['posts'], not $bbuserinfo.

"if" condition for "registered less than 30 days":

Code:

<if condition="TIMENOW - $userinfo['joindate'] < (30 * 86400)">
(86400 = seconds in one day)

NP Carling26 09-22-2010 05:50 AM

Thank you so much it worked! I guess this thread can be destroyed or whatever :) Hopefully this can help others too :) Thanks again!


All times are GMT. The time now is 02:11 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01018 seconds
  • Memory Usage 1,719KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete