-
Hello all!
Sorry for missing answer there, dear @LoneTreeLeaf . No, this menu doesn't exist in Studio. It was set for the specific memberships in the serviceManageTools method of the modules\base\general\classes\BxBaseModGeneralModule.php class . This part looks like:
if(BxDolAcl::getInstance()->isMemberLevelInSet(192)) {
where the integer value matches every bit of the membership ID.
But this method can take the array of IDs and you may change it like:
if(BxDolAcl::getInstance()->isMemberLevelInSet(array(1,2,3, [ID of your custom level]))) {
-
@Leonid S Where do we find the "membership ID" values? One of the sys tables?
-
-