• I had an issue with this plugin where it showed an error message when a non-admin user tries to create a plugin. I checked online and it turns out that several other people are having this same problem but no solutions yet.
    I eventually found a solution, though this will allow all group members to be able to add projects, not just the group admin and mods.

    Open “taskbreaker-project-management/core/conditional-tags.php” in your cpanel file manager or wordpress plugin editor.
    2) Go to line 143
    3) Replace if ( groups_is_user_member( get_current_user_id(), $group_id ) ) {
    return apply_filters( ‘taskbreaker/core/conditional-tags/can_add_project_to_group/is-group-member’, __return_false() );
    }

    with
    if ( groups_is_user_member( get_current_user_id(), $group_id ) ) {
    return apply_filters( ‘taskbreaker/core/conditional-tags/can_add_project_to_group/is-group-member’, __return_true() );
    }

  • The topic ‘Group Members Unable to Create Projects SOLVED’ is closed to new replies.