Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter j0schi

    (@j0schi)

    i just found out that this is combined with the publish posts capability… but i dont want my support user to publish posts 🙁 because then he can also publish comments, testimonials, portfolio and so on…

    Plugin Author siamkreative

    (@siamkreative)

    Hey there,

    What roles are your support staff currently using? Our plugin creates the following custom roles:

    • Support Superviser
    • Support Manager
    • Support Agent
    • Support User

    More details below:

    $manager = add_role( 'wpas_manager',         __( 'Support Superviser', 'wpas' ), $editor->capabilities );     // Has full capabilities for the plugin in addition to editor capabilities
    		$tech    = add_role( 'wpas_support_manager', __( 'Support Manager', 'wpas' ),    $subscriber->capabilities ); // Has full capabilities for the plugin only
    		$agent   = add_role( 'wpas_agent',           __( 'Support Agent', 'wpas' ),      $author->capabilities );     // Has limited capabilities for the plugin in addition to author's capabilities
    		$client  = add_role( 'wpas_user',            __( 'Support User', 'wpas' ),       $subscriber->capabilities ); // Has posting & replying capapbilities for the plugin in addition to subscriber's capabilities

    Lemme know if that helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Problem with role capabilitys’ is closed to new replies.