@joshdrok
9 years, 6 months ago
Is there a way to edit what group members can do? I only want the group admin to be able to post in a group, but I want all members to be able to comment on the posts.
@shanebp
Create a template overload of this file: buddypress\bp-templates\bp-legacy\buddypress\groups\single\activity.php
In the overload, change this: <?php if ( is_user_logged_in() && bp_group_is_member() ) : ?>
<?php if ( is_user_logged_in() && bp_group_is_member() ) : ?>
to this: <?php if ( is_user_logged_in() && bp_group_is_admin() ) : ?>
<?php if ( is_user_logged_in() && bp_group_is_admin() ) : ?>
Thanks, I’ll give this a shot and see how it goes.