Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Please add the following code to your WP theme functions.php file, it should remove the “Event Contributor” role:

    $wp_roles = new WP_Roles();
    $wp_roles->remove_role("event_contributor");
    Thread Starter joaorosa

    (@joaorosa-1)

    Hello.
    I tried the code you posted in the functions.php of my theme and it didn’t work.
    I tried this code too:

    $wp_roles = new WP_Roles();
    $wp_roles->remove_role(“ai1ec_event_assistant”);

    The difference is the “ai1ec_event_assistant” (the slug of the role).

    Do you have more sugestions?

    Please try without “event”:

    $wp_roles = new WP_Roles();
    $wp_roles->remove_role("contributor");
    Thread Starter joaorosa

    (@joaorosa-1)

    Still nothing

    It should work, have you tried to remove another role using the above code?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Deleting Event Contributor Role’ is closed to new replies.