vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   How do I limit the viewing of a vB custom page to members with a certain post count? (https://vborg.vbsupport.ru/showthread.php?t=146050)

Wolfegar 04-29-2007 09:13 PM

How do I limit the viewing of a vB custom page to members with a certain post count?
 
Quote:

Originally Posted by me on vB.com
have a custom page, that I'd like to limit to members that are not in the guest or banned user groups but that also have a minimum post count of 30.

I found the conditionals thread in the customizations sub-forum, (on vBulletin.com), but there was no mention of detecting posts counts there.

-=-

Okay, so I got this from vBulletin.com

<if condition="is_member_of($bbuserinfo, X, Y, Z)">

<!-- content here is for users in groups that can see the main content -->

<else />

<!-- content here is shown to users in groups who can not see the main content -->

</if>


Now, that works for limiting it to certain groups. But what I'd like to do for one of the custom pages is disallow the guest and banned groups from viewing the content, but allowing all the other groups if a member's post count is 30 or more.

What I could do, I suppose, is turn it around a bit and put the content after the else bit, put the id numbers for the guest and banned groups in the first bit so they then see a not allowed message, but how do I tell if anyone has a post count of 30 or more?

WetWired 04-30-2007 04:11 AM

Code:

<if condition="$bbuserinfo['posts']>=30">
That should work, if not, it's
Code:

<if condition="$vbulletin->userinfo['posts']>=30">

Wolfegar 04-30-2007 06:47 AM

Quote:

Originally Posted by WetWired (Post 1238005)
Code:

<if condition="$bbuserinfo['posts']>=30">
That should work, if not, it's
Code:

<if condition="$vbulletin->userinfo['posts']>=30">

Thank you very much, WetWired. I presume one of those would be the vB 3.6.5 one?

WetWired 04-30-2007 01:59 PM

They both should be for 3.x.x . I'm just not sure if the parser substitutes vbulletin->userinfo for bbuserinfo inside conditionals or not.


All times are GMT. The time now is 04:03 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.01093 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
  • (4)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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