Only Admin can upgrade one specific membership level...

Hello guys.

  I couldn't find a way yet to do this.
  I need to create one Membership name "Artists".  They will be able to upload sound and others actions that others won't.
  But this Membership should not be shown on available membership page.  Only administrators can manualy upgrade some users to this specific membeship level.
  After I have created it, Where should I go into to hide (comment) it?  

   

Quote · 28 Jun 2012

go to modules\boonex\membership\classes\BxMbpDb.php at line 50 add something like this

$sWhereClause = " AND `tl`.`Active`='yes' AND `tl`.`Purchasable`='yes' AND `tl`.`ID` != '4'";

you can get the id from sys_acl_levels table.

This will not show the membership in purchasable list

Good luck

EDIT:

Or even better, you can do this instead

$sWhereClause = " AND `tl`.`Active`='yes' AND `tl`.`Purchasable`='yes' AND `tl`.`Name` != 'Artists'";

Your choice, enjoy :)

so much to do....
Quote · 28 Jun 2012

Fantastic.   Thank you Prashank...

Quote · 28 Jun 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.