Quote:
Originally Posted by mariocaz
Hi,
Well thank you very much for this great mod, I installed it and works awesome, but I need a Mod that the registered users can upload until they have X number of posts ?
But only for the registeres users, I don?t want to affect other user groups, like one that I have "VIP Donators Group", the members of this group do a donation by paypal so they can upload an avatar before they have 200 posts.
This mod don?t have group permissions so this mod affects to all my user groups.
Help me please!!
Mario
|
Hi mariocaz,
Admincp >> Plugin Manager >> Profil Resim Kısıtlama (profile_editprofilepic) >> Edit
Change with this codes:
PHP Code:
$kpt_profile_kisitlama = $vbulletin->options['kpt_profile_sinirlama'];
if (in_array($vbulletin->userinfo['usergroupid'], array(5, 6, 7)))
{
if (($vbulletin->userinfo[posts]< $kpt_profile_kisitlama))
{
standard_error(fetch_error('error_postcount_too_low_profile', $vbulletin->options['kpt_profile_sinirlama'], $vbulletin->userinfo[posts]));
}
}
array(5, 6, 7) "5, 6, 7" are usergroups ID.