PDA

View Full Version : can see forum/threads/posts only with 20 posts and higher


DivDax
09-28-2003, 02:37 PM
Hi all!

Sorry for my bad english! I'm german... :)


I can't find this hack here (see title)
Can anyone build me this hack?


I'm using vBulletin v.2.3.0 german





DivDax

assassingod
09-28-2003, 02:45 PM
Try these hacks:
https://vborg.vbsupport.ru/showthread.php?t=33253&highlight=minimum+posts+threads+forum
https://vborg.vbsupport.ru/showthread.php?t=44571&highlight=minimum+posts+threads+forum
https://vborg.vbsupport.ru/showpost.php?p=199774&postcount=5

DivDax
09-28-2003, 03:11 PM
thank you, but i can't find a hack that the users can view a forum on the startpage only with 20 posts and higher.

With this hacks the users can see the forums on the forum startpage. :(

Gary King
09-28-2003, 06:01 PM
thank you, but i can't find a hack that the users can view a forum on the startpage only with 20 posts and higher.

With this hacks the users can see the forums on the forum startpage. :(
20 posts and higher, does that mean the thread must have 20 posts or higher, or the user must have 20 posts or higher?

DivDax
09-28-2003, 09:09 PM
The User must have min. 20 posts to see the forum on startpage

Gary King
09-28-2003, 10:01 PM
The User must have min. 20 posts to see the forum on startpage
Do you want this to affect ALL forums, or only specified ones?

DivDax
09-29-2003, 05:10 PM
Do you want this to affect ALL forums, or only specified ones?
only specified ones. ;)
ans with categories

DivDax
09-30-2003, 12:06 PM
hey guys!
no hack, no idea? please help me!

Gary King
09-30-2003, 07:44 PM
For forumhome, open index.php and find eval("\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";");


Replace with if (!($bbuserinfo['posts'] < 20 and $forum['forumid']==XX))
{
eval("\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";");
}

Replace XX with the forumid(s) you want blocked if user has less than 20 posts. Copy and paste and $forum['forumid']==XX after the XX to add more forums.

DivDax
10-12-2003, 09:23 AM
How can i make, that admins s-mods and mods alway can see this forums?

DivDax
10-13-2003, 10:13 PM
can't anyone help me? :(

Gary King
10-13-2003, 10:38 PM
if ((!($bbuserinfo['posts'] < 20 and $forum['forumid']==XX)) OR $bbuserinfo['usergroupid'] == 5 OR $bbuserinfo['usergroupid'] == 6 OR $bbuserinfo['usergroupid'] == 7)
{
eval("\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";");
} ??