View Full Version : Paid Subscription by Usergroup
clearchannel
10-05-2005, 10:47 PM
I would like to allow specfic usergroups access to purchase a subscription(s)
It worked great in 3.07 by editing the subscription.php file. I can no longer find they syntax I changed in 3.07.
Is this possible to do in 3.50?
Thank you in advance.
Chris M
10-05-2005, 10:51 PM
subscription.php is now payments.php in vB 3.5 :)
Chris
clearchannel
10-06-2005, 12:04 AM
The code is different from version 3.07 to 3.50. Would you have a suggestion for allowing just one usergroup to use the paid subscriptions?
The code I changed perviously is
from
if ($bbuserinfo['userid'] == 0)
to
if (!is_member_of($bbuserinfo, 10))
10 being the usergroup allowed to used paid subscriptions.
Thanks in advance.
clearchannel
10-08-2005, 10:59 PM
Whould anyone have a suggestion for allowing one specfic usergroup to purchase a paid subscription?
UK Jimbo
10-08-2005, 11:48 PM
Untested...
You should be able to add the following conditional statement around the payment link in templates to prevent it appearing to users who aren't in group 10. Any code inbetween these two tags will only appear to member of group 10.
<if condition="is_member_of($bbuserinfo, 10)">
</if>
You can also prevent users who aren't in that group from accessing the page itself by adding a new plugin with the hook location paidsub_start
if(! is_member_of($vbulletin->userinfo,10) ) {
print_no_permission();
}
This should show an error message for users that aren't in group 10 preventing them from seeing the page.
clearchannel
10-10-2005, 07:05 PM
I apologize, this may be above my skill level :o
Would you be so kind as to provide more detail.
Thank you in advance.
UK Jimbo
10-10-2005, 10:05 PM
Download the attached plugin to your computer.
Now install it on your system (Plugin system -> Download / Upload Plugins).
Only users of usergroup 10 will be able to access the plugin system
clearchannel
10-10-2005, 11:24 PM
Thank you very much. That works like a champ. I truely do appericate your assistance.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.