Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Vladimir Garagulya

    (@shinephp)

    Hello,

    1) Changing bbPRess roles:
    Currently URE does not work with bbPress roles at all.

    bbPress does not store its roles at WordPress database as WordPress itself does. bbPress adds its roles to the roles list through the code. So it’s problematic to work with them as with other roles stored WordPress traditional way.

    I excluded all bbPress roles from processing by URE for this reason.
    I plan to return to this issue later.

    2) bbPress does not show new roles. I suppose that bbPress may include into its roles list just its own roles. Where do you not see new created role?

    Thread Starter Marcooo1337

    (@marcooo1337)

    The website where I was talking about is http://www.beneluxgamers.nl
    We are using bbPress roles on this site.

    Atm the forum is showing “Sleutelbeheerder” for the admin. I would like to change it to Beheerder trought User Roles Editor?

    Plugin Author Vladimir Garagulya

    (@shinephp)

    Currently User Role Editor will not help you with renaming bbPress role for the reasons described above.
    You may use this code as workaround:

    add_filter('bbp_get_dynamic_roles', 'bbp_rename_roles', 10, 1);
    
    function bbp_rename_roles($bbp_roles) {
    
        $bbp_roles['bbp_keymaster']['name'] = 'Beheerder';
    
      return $bbp_roles;
    }

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘User Role doesn't edit forum roles (bbpress)’ is closed to new replies.