Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-26-2012, 07:53 AM
sadiq6210 sadiq6210 is offline
 
Join Date: Sep 2005
Posts: 684
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Male / Female usergroup color

I have +15,000 users, although I have extra filed for gender (male/female), but I can't make a usergroup for each because I should explore 15000 users and I should move the new users who will register in future I should move it manually to the another group (everyday everyday ....).

We need a smart system (Al least "IF statement") to separate the users based on their gender, in all forum not only in postbit template.
Reply With Quote
  #2  
Old 03-04-2012, 05:18 AM
sadiq6210 sadiq6210 is offline
 
Join Date: Sep 2005
Posts: 684
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any idea?
Reply With Quote
  #3  
Old 03-05-2012, 11:28 AM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You would need to make a plugin on the fetch_musername hook.


Something like this- untested code-
PHP Code:
gloabl $vbulletin;

if (
$vbulletin->userinfo['field5'] == "Female")
     
$user['musername'] = '<span style="color:pink;">' $user['username'] . '</span>';
else 
// If not female, assume male
     
$user['musername'] = '<span style="color:blue;">' $user['username'] . '</span>'
Obviously change the colors to your needs. Replace the 5 in 'field5' with whatever the number of your custom profile field.

Also assumes the field holds the word "Female" - if it's "Woman" / "Girl" whatever make sure you change that too.
Reply With Quote
Благодарность от:
sadiq6210
  #4  
Old 03-06-2012, 07:37 AM
sadiq6210 sadiq6210 is offline
 
Join Date: Sep 2005
Posts: 684
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks dear :up:

This is my code:
PHP Code:
if ($vbulletin->userinfo['field12'] == "GIRL")
{
     
$user['musername'] = '<span style="color:pink;">' $user['username'] . '</span>';
}

else
{
     
$user['musername'] = '<span style="color:blue;">' $user['username'] . '</span>';


But I got all users in blue color only ! No pink
When I only change (GIRL) with (BOY) in the first line I got all users in pink color.

see the attached screen-shots
I appreciate your help
Attached Images
File Type: jpg Group1.jpg (70.6 KB, 0 views)
File Type: png Group2.PNG (28.6 KB, 0 views)
Reply With Quote
  #5  
Old 03-06-2012, 12:16 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You're missing the first line of my code in the plugin-

PHP Code:
global $vbulletin
Edit- actually I'm not sure that matters... I don't think it does in this hook.

I see you have some other language installed... what language is your forum in?

Oh wait- I see this is a required field... but has it always been a required field? If not a lot of users may not have set it yet- is that possible? Did you test it for a user you know is absolutely set to BOY or GIRL?
Reply With Quote
  #6  
Old 03-06-2012, 12:28 PM
sadiq6210 sadiq6210 is offline
 
Join Date: Sep 2005
Posts: 684
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BirdOPrey5 View Post
You're missing the first line of my code in the plugin-

PHP Code:
gloabl $vbulletin

If I put this code in first line then I will get error

PHP Code:
Parse errorsyntax errorunexpected T_VARIABLE in /home/WEBSITE/public_html/forum/includes/functions.php(1329) : eval()'d code on line 1 
I see this error line before my forum header hundreds times (same line) !

like this:

PHP Code:
Parse errorsyntax errorunexpected T_VARIABLE in /home/WEBSITE/public_html/forum/includes/functions.php(1329) : eval()'d code on line 1

Parse error: syntax error, unexpected T_VARIABLE in /home/WEBSITE/public_html/forum/includes/functions.php(1329) : eval()'
d code on line 1

Parse error
syntax errorunexpected T_VARIABLE in /home/WEBSITE/public_html/forum/includes/functions.php(1329) : eval()'d code on line 1

Parse error: syntax error, unexpected T_VARIABLE in /home/WEBSITE/public_html/forum/includes/functions.php(1329) : eval()'
d code on line 1

Parse error
syntax errorunexpected T_VARIABLE in /home/WEBSITE/public_html/forum/includes/functions.php(1329) : eval()'d code on line 1

...................................... 
Reply With Quote
  #7  
Old 03-06-2012, 12:44 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry I typoed it-

it should be: global $vbulletin;

Also I edited the post above with another question.
Reply With Quote
  #8  
Old 03-06-2012, 12:55 PM
sadiq6210 sadiq6210 is offline
 
Join Date: Sep 2005
Posts: 684
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is my final code

PHP Code:
global $vbulletin;

if (
$vbulletin->userinfo['field12'] == "GIRL")
{
     
$user['musername'] = '<span style="color:pink;">' $user['username'] . '</span>';
}

else
{
     
$user['musername'] = '<span style="color:blue;">' $user['username'] . '</span>';


Edit- actually I'm not sure that matters... I don't think it does in this hook.
You are right, nothing changed after add (gloabl $vbulletin. All users are blue color.


I see you have some other language installed... what language is your forum in?
Arabic, but I am using English lang. for this field. (Group / BOY or GIRL) so no Arabic words.

Oh wait- I see this is a required field... but has it always been a required field? If not a lot of users may not have set it yet- is that possible? Did you test it for a user you know is absolutely set to BOY or GIRL?

Yes this is always required field. Nobody can register without choose this field (BOY / GIRL) and I can see this field when I visit any user profile.
I have +1000 online users (BOY + GIRLS) but all users are in blue color.

I wish we can fix this, my users will like this change
Thanks again
Reply With Quote
  #9  
Old 03-06-2012, 01:26 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't know what it could be...

I just tested this exact code on my test forum:

PHP Code:
global $vbulletin;

if (
$vbulletin->userinfo['field7'] == "GIRL")
{
     
$user['musername'] = '<span style="color:pink;">' $user['username'] . '</span>';
}

else
{
     
$user['musername'] = '<span style="color:blue;">' $user['username'] . '</span>';

And made field7 BOY / GIRL just like your settings and it works just fine.

The problem for you is that:

PHP Code:
$vbulletin->userinfo['field12'] == "GIRL" 
is NEVER being evaluated as "true" even when it should be...

Just for a test measure why not add this line to the top of the code:

PHP Code:
echo "|" $vbulletin->userinfo['field12'] . "|"
It should write out at the very top of your forum something like |BOY||BOY||GIRL||BOY....

I'm curious if says anything at all... if it does copy and paste it here...

Be sure to remove the line after you run this test so it doesn't mess up your forum for everyone.
Reply With Quote
  #10  
Old 03-06-2012, 03:11 PM
sadiq6210 sadiq6210 is offline
 
Join Date: Sep 2005
Posts: 684
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much

I got this:

|||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BO Y||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY||BOY|


I can't understand why there is no (GIRL) !
Anything wrong here?
https://vborg.vbsupport.ru/attachmen...1&d=1331022780
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:00 PM.


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.05275 seconds
  • Memory Usage 2,322KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (10)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (1)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete