Quote:
Originally Posted by nick682
I have this installed and can view the donations page, but when I go there it won't let me see any of the donations. I'm the admin of the board, but can't confirm any of the donations. Any idea whats wrong?
|
Quote:
Originally Posted by Bouncer222
Same here as nick said, but apperently no one is looking at this issue? I wonder why.. I will be forced to uninstall this soon..
|
This is because the mod assumes that you use usergroup ID 6 for your administrators.
I do not and use my custom usergroups. As a result, you need to manually edit the template "cyb_paypal_list" and search for:
Code:
is_member_of($bbuserinfo,6)
Simply change all instances of 6 to the usergroup ID of your admin account. If you want to allow access to more than one usergroup, simply do the following:
Code:
is_member_of($bbuserinfo,6,7,8)
However, remember in both instances you need to adjust the usergroup id in the "cyb_paypal_donbar" template from 6 or if you allow more usergroups change the conditional to:
Code:
<if condition="(is_member_of($bbuserinfo,6,7,8))">
Hope that helps
Matt