Search Results for 'private'
-
AuthorSearch Results
-
March 28, 2023 at 12:53 pm #328851
Topic: BP attachments
in forum How-to & TroubleshootingLars Henriksen
ParticipantThank you for developing BP attachments ! I would like to test it compared to the plugin Activity Plus Reloaded.
1) Will there be any issues if this add-on moves into BP core? Would it be better to wait for that?
2) “Please make sure the /nas/content/live/buddypress-private exists and is writeable for the server’s user.” – should i create this folder via ftp – if so, which folder ?
Thanks,
LarsMarch 15, 2023 at 6:04 pm #328706Topic: Is there a way to block invites?
in forum How-to & TroubleshootingPhilippe Roussel
ParticipantHi,
I will need to create private or hidden groups where I am the only one able to invite people.
Thanks for your help,
PhilippeFebruary 25, 2023 at 4:06 am #328524In reply to: message reply bug in v11.0.0
christy359
ParticipantHello gm
we are waiting for updates please reply me privately Nexus Iceland AppFebruary 22, 2023 at 2:28 pm #328495Topic: HTML entities in the private message title
in forum How-to & Troubleshootingm1000
ParticipantWhen I use special characters like &&& then it displays html entities, it happens to all default WP themes
February 16, 2023 at 5:25 pm #328444Topic: Group settings
in group forum Installing BuddyPressswietcher
ParticipantHello, I am building a training site. I want to create a private group with Buddypress and I want only those who bought the training to be able to join the group I created. How can I do that? I don’t want everyone to be able to join my group. Also, when people want to share on the main page, that is, in the flow, I want them to be approved by me. How can I do that?
February 15, 2023 at 3:04 pm #328428In reply to: Say Hi to BuddyPress 11.0.0 “La Scala”
ito
ParticipantHaving issues with the new update as well.
Unable to read messages – I can see how many are there – when I press on them it takes me to ‘page not found’. Same for all other tabs – ie notifications, etc.If I have a member page – it is not private – everyone can see everyone else’s.
Help?
February 14, 2023 at 12:26 am #328396Topic: Private Messages Send Reply Error
in forum How-to & Troubleshootingglennizen
ParticipantWordPress Version 6.1.1
BuddyPress Version 11.0.0I’m having a problem implementing BuddyPress on my site. Everything works fine except for Reply to Private Message. When click on Send Reply btn, it errors out: “Your reply was not sent. Please enter some content.” There is content. Please advise. Thank you.
February 2, 2023 at 11:22 am #328221In reply to: Say Hi to BuddyPress 11.0.0 “La Scala”
adhamahmed
Participantwelcome everybody
After greeting
I want to know a problem. When I select a private forum, the word is repeated twice: private: private:
Template support told me not by us
Is there any helper?
RegardsJanuary 29, 2023 at 5:07 pm #328174In reply to: remove group privacy
edensan
Participantokay here is the php code for every privacy set to public:
<?php /** * BP Nouveau Group's edit settings template. * * This template can be overridden by copying it to yourtheme/buddypress/groups/single/admin/group-settings.php. * * @since BuddyPress 3.0.0 * @version 1.0.0 */ ?> <?php if ( bp_is_group_create() ) : ?> <h3 class="bp-screen-title creation-step-name"> <?php esc_html_e( 'Select Group Settings', 'buddyboss' ); ?> </h3> <?php else : ?> <h2 class="bp-screen-title"> <?php esc_html_e( 'Change Group Settings', 'buddyboss' ); ?> </h2> <?php endif; ?> <div class="group-settings-selections"> <fieldset class="radio group-status-type"> <legend><?php esc_html_e( 'Privacy Options', 'buddyboss' ); ?></legend> <div class="bp-radio-wrap"> <input type="radio" name="group-status" id="group-status-public" class="bs-styled-radio" value="public" <?php if ( 'public' === bp_get_new_group_status() || ! bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="public-group-description" /> <label for="group-status-public"><?php esc_html_e( 'This is a public group', 'buddyboss' ); ?></label> </div> <ul id="public-group-description"> <li><?php esc_html_e( 'Any site member can join this group.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'This group will be listed in the groups directory and in search results.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'Group content and activity will be visible to any site member.', 'buddyboss' ); ?></li> </ul> <?php /** DIT UITGEVINKT DOOR EDWIN <div class="bp-radio-wrap"> <input type="radio" name="group-status" id="group-status-private" class="bs-styled-radio" value="private" <?php if ( 'private' === bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="private-group-description" /> <label for="group-status-private"><?php esc_html_e( 'This is a private group', 'buddyboss' ); ?></label> </div> <ul id="private-group-description"> <li><?php esc_html_e( 'Only people who request membership and are accepted can join the group.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'This group will be listed in the groups directory and in search results.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'Group content and activity will only be visible to members of the group.', 'buddyboss' ); ?></li> </ul> <div class="bp-radio-wrap"> <input type="radio" name="group-status" id="group-status-hidden" class="bs-styled-radio" value="hidden" <?php if ( 'hidden' === bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="hidden-group-description" /> <label for="group-status-hidden"><?php esc_html_e( 'This is a hidden group', 'buddyboss' ); ?></label> </div> <ul id="hidden-group-description"> <li><?php esc_html_e( 'Only people who are invited can join the group.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'This group will not be listed in the groups directory or search results.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'Group content and activity will only be visible to members of the group.', 'buddyboss' ); ?></li> </ul> DIT UITGEVINKT DOOR EDWIN */ ?> </fieldset> <fieldset class="radio group-invitations"> <legend><?php esc_html_e( 'Group Invitations', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to invite others?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-invite-status" id="group-invite-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_invite_status_setting( 'members' ); ?> /> <label for="group-invite-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-invite-status" id="group-invite-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_invite_status_setting( 'mods' ); ?> /> <label for="group-invite-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-invite-status" id="group-invite-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_invite_status_setting( 'admins' ); ?> /> <label for="group-invite-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <fieldset class="radio group-post-form"> <legend><?php esc_html_e( 'Activity Feeds', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to post into the activity feed?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-activity-feed-status" id="group-activity-feed-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_activity_feed_status_setting( 'members' ); ?> /> <label for="group-activity-feed-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-activity-feed-status" id="group-activity-feed-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_activity_feed_status_setting( 'mods' ); ?> /> <label for="group-activity-feed-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-activity-feed-status" id="group-activity-feed-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_activity_feed_status_setting( 'admins' ); ?> /> <label for="group-activity-feed-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php if ( bp_is_active( 'media' ) && bp_is_group_media_support_enabled() ) : ?> <fieldset class="radio group-media"> <legend><?php esc_html_e( 'Group Photos', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to upload photos?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-media-status" id="group-media-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_media_status_setting( 'members' ); ?> /> <label for="group-media-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-media-status" id="group-media-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_media_status_setting( 'mods' ); ?> /> <label for="group-media-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-media-status" id="group-media-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_media_status_setting( 'admins' ); ?> /> <label for="group-media-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php if ( bp_is_active( 'media' ) && bp_is_group_albums_support_enabled() ) : ?> <fieldset class="radio group-albums"> <legend><?php esc_html_e( 'Group Albums', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to create albums?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-album-status" id="group-albums-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_albums_status_setting( 'members' ); ?> /> <label for="group-albums-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-album-status" id="group-albums-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_albums_status_setting( 'mods' ); ?> /> <label for="group-albums-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-album-status" id="group-albums-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_albums_status_setting( 'admins' ); ?> /> <label for="group-albums-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php if ( bp_is_active( 'media' ) && bp_is_group_document_support_enabled() ) : ?> <fieldset class="radio group-document"> <legend><?php esc_html_e( 'Group Documents', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to upload documents?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-document-status" id="group-document-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_document_status_setting( 'members' ); ?> /> <label for="group-document-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-document-status" id="group-document-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_document_status_setting( 'mods' ); ?> /> <label for="group-document-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-document-status" id="group-document-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_document_status_setting( 'admins' ); ?> /> <label for="group-document-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php if ( bp_is_active( 'video' ) && bp_is_group_video_support_enabled() ) : ?> <fieldset class="radio group-video"> <legend><?php esc_html_e( 'Group Videos', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to upload videos?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-video-status" id="group-video-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_video_status_setting( 'members' ); ?> /> <label for="group-video-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-video-status" id="group-video-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_video_status_setting( 'mods' ); ?> /> <label for="group-video-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-video-status" id="group-video-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_video_status_setting( 'admins' ); ?> /> <label for="group-video-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php if ( bp_is_active( 'messages' ) && true === bp_disable_group_messages() ) : ?> <fieldset class="radio group-messages"> <legend><?php esc_html_e( 'Group Messages', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to send group messages?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input checked type="radio" name="group-message-status" id="group-messages-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_messages_status_setting( 'members' ); ?> /> <label for="group-messages-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-message-status" id="group-messages-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_messages_status_setting( 'mods' ); ?> /> <label for="group-messages-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-message-status" id="group-messages-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_messages_status_setting( 'admins' ); ?> /> <label for="group-messages-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php $group_types = bp_groups_get_group_types( array( 'show_in_create_screen' => true ), 'objects' ); // Hide Group Types if none is selected in Users > Profile Type > E.g. (Students) > Allowed Group Types meta box. if ( false === bp_restrict_group_creation() && true === bp_member_type_enable_disable() ) { $get_all_registered_member_types = bp_get_active_member_types(); if ( isset( $get_all_registered_member_types ) && ! empty( $get_all_registered_member_types ) ) { $current_user_member_type = bp_get_member_type( bp_loggedin_user_id() ); if ( '' !== $current_user_member_type ) { $member_type_post_id = bp_member_type_post_by_type( $current_user_member_type ); $include_group_type = get_post_meta( $member_type_post_id, '_bp_member_type_enabled_group_type_create', true ); if ( isset( $include_group_type ) && ! empty( $include_group_type ) && 'none' === $include_group_type[0] ) { $group_types = ''; } } } } // Group type selection if ( $group_types ) : ?> <fieldset class="group-create-types"> <legend><?php esc_html_e( 'Group Type', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'What type of group is this? (optional)', 'buddyboss' ); ?></p> <select id="bp-groups-type" name="group-types[]" autocomplete="off"> <option value="" <?php selected( '', '' ); ?>><?php _e( 'Select Group Type', 'buddyboss' ); ?></option> <?php foreach ( $group_types as $type ) : ?> <?php if ( false === bp_restrict_group_creation() && true === bp_member_type_enable_disable() ) { $get_all_registered_member_types = bp_get_active_member_types(); if ( isset( $get_all_registered_member_types ) && ! empty( $get_all_registered_member_types ) ) { $current_user_member_type = bp_get_member_type( bp_loggedin_user_id() ); if ( '' !== $current_user_member_type ) { $member_type_post_id = bp_member_type_post_by_type( $current_user_member_type ); $include_group_type = get_post_meta( $member_type_post_id, '_bp_member_type_enabled_group_type_create', true ); if ( isset( $include_group_type ) && ! empty( $include_group_type ) ) { if ( in_array( $type->name, $include_group_type ) ) { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } } else { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } } else { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } } else { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } } else { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } ?> <?php endforeach; ?> </select> </fieldset> <?php endif; ?> <?php if ( bp_enable_group_hierarchies() ) : $current_parent_group_id = bp_get_parent_group_id(); $possible_parent_groups = bp_get_possible_parent_groups(); ?> <fieldset class="select group-parent"> <legend><?php esc_html_e( 'Group Parent', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which group should be the parent of this group? (optional)', 'buddyboss' ); ?></p> <select id="bp-groups-parent" name="bp-groups-parent" autocomplete="off"> <option value="0" <?php selected( 0, $current_parent_group_id ); ?>><?php _e( 'Select Parent', 'buddyboss' ); ?></option> <?php if ( $possible_parent_groups ) { foreach ( $possible_parent_groups as $possible_parent_group ) { ?> <option value="<?php echo $possible_parent_group->id; ?>" <?php selected( $current_parent_group_id, $possible_parent_group->id ); ?>><?php echo esc_html( $possible_parent_group->name ); ?></option> <?php } } ?> </select> </fieldset> <?php endif; ?> </div><!-- // .group-settings-selections -->greetz Edwin
January 29, 2023 at 2:36 pm #328170In reply to: remove group privacy
edensan
Participantokay i find this setting in:
\bp-nouveau\buddypress\groups\single\admin\group-settings.php<?php /** * BP Nouveau Group's edit settings template. * * This template can be overridden by copying it to yourtheme/buddypress/groups/single/admin/group-settings.php. * * @since BuddyPress 3.0.0 * @version 1.0.0 */ ?> <?php if ( bp_is_group_create() ) : ?> <h3 class="bp-screen-title creation-step-name"> <?php esc_html_e( 'Select Group Settings', 'buddyboss' ); ?> </h3> <?php else : ?> <h2 class="bp-screen-title"> <?php esc_html_e( 'Change Group Settings', 'buddyboss' ); ?> </h2> <?php endif; ?> <div class="group-settings-selections"> <fieldset class="radio group-status-type"> <legend><?php esc_html_e( 'Privacy Options', 'buddyboss' ); ?></legend> <div class="bp-radio-wrap"> <input type="radio" name="group-status" id="group-status-public" class="bs-styled-radio" value="public" <?php if ( 'public' === bp_get_new_group_status() || ! bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="public-group-description" /> <label for="group-status-public"><?php esc_html_e( 'This is a public group', 'buddyboss' ); ?></label> </div> <ul id="public-group-description"> <li><?php esc_html_e( 'Any site member can join this group.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'This group will be listed in the groups directory and in search results.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'Group content and activity will be visible to any site member.', 'buddyboss' ); ?></li> </ul> <?php /** DIT UITGEVINKT DOOR EDWIN <div class="bp-radio-wrap"> <input type="radio" name="group-status" id="group-status-private" class="bs-styled-radio" value="private" <?php if ( 'private' === bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="private-group-description" /> <label for="group-status-private"><?php esc_html_e( 'This is a private group', 'buddyboss' ); ?></label> </div> <ul id="private-group-description"> <li><?php esc_html_e( 'Only people who request membership and are accepted can join the group.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'This group will be listed in the groups directory and in search results.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'Group content and activity will only be visible to members of the group.', 'buddyboss' ); ?></li> </ul> <div class="bp-radio-wrap"> <input type="radio" name="group-status" id="group-status-hidden" class="bs-styled-radio" value="hidden" <?php if ( 'hidden' === bp_get_new_group_status() ) { ?> checked="checked"<?php } ?> aria-describedby="hidden-group-description" /> <label for="group-status-hidden"><?php esc_html_e( 'This is a hidden group', 'buddyboss' ); ?></label> </div> <ul id="hidden-group-description"> <li><?php esc_html_e( 'Only people who are invited can join the group.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'This group will not be listed in the groups directory or search results.', 'buddyboss' ); ?></li> <li><?php esc_html_e( 'Group content and activity will only be visible to members of the group.', 'buddyboss' ); ?></li> </ul> DIT UITGEVINKT DOOR EDWIN */ ?> </fieldset> <fieldset class="radio group-invitations"> <legend><?php esc_html_e( 'Group Invitations', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to invite others?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-invite-status" id="group-invite-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_invite_status_setting( 'members' ); ?> /> <label for="group-invite-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-invite-status" id="group-invite-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_invite_status_setting( 'mods' ); ?> /> <label for="group-invite-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-invite-status" id="group-invite-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_invite_status_setting( 'admins' ); ?> /> <label for="group-invite-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <fieldset class="radio group-post-form"> <legend><?php esc_html_e( 'Activity Feeds', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to post into the activity feed?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-activity-feed-status" id="group-activity-feed-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_activity_feed_status_setting( 'members' ); ?> /> <label for="group-activity-feed-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-activity-feed-status" id="group-activity-feed-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_activity_feed_status_setting( 'mods' ); ?> /> <label for="group-activity-feed-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-activity-feed-status" id="group-activity-feed-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_activity_feed_status_setting( 'admins' ); ?> /> <label for="group-activity-feed-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php if ( bp_is_active( 'media' ) && bp_is_group_media_support_enabled() ) : ?> <fieldset class="radio group-media"> <legend><?php esc_html_e( 'Group Photos', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to upload photos?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-media-status" id="group-media-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_media_status_setting( 'members' ); ?> /> <label for="group-media-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-media-status" id="group-media-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_media_status_setting( 'mods' ); ?> /> <label for="group-media-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-media-status" id="group-media-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_media_status_setting( 'admins' ); ?> /> <label for="group-media-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php if ( bp_is_active( 'media' ) && bp_is_group_albums_support_enabled() ) : ?> <fieldset class="radio group-albums"> <legend><?php esc_html_e( 'Group Albums', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to create albums?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-album-status" id="group-albums-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_albums_status_setting( 'members' ); ?> /> <label for="group-albums-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-album-status" id="group-albums-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_albums_status_setting( 'mods' ); ?> /> <label for="group-albums-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-album-status" id="group-albums-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_albums_status_setting( 'admins' ); ?> /> <label for="group-albums-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php if ( bp_is_active( 'media' ) && bp_is_group_document_support_enabled() ) : ?> <fieldset class="radio group-document"> <legend><?php esc_html_e( 'Group Documents', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to upload documents?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-document-status" id="group-document-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_document_status_setting( 'members' ); ?> /> <label for="group-document-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-document-status" id="group-document-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_document_status_setting( 'mods' ); ?> /> <label for="group-document-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-document-status" id="group-document-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_document_status_setting( 'admins' ); ?> /> <label for="group-document-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php if ( bp_is_active( 'video' ) && bp_is_group_video_support_enabled() ) : ?> <fieldset class="radio group-video"> <legend><?php esc_html_e( 'Group Videos', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to upload videos?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-video-status" id="group-video-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_video_status_setting( 'members' ); ?> /> <label for="group-video-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-video-status" id="group-video-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_video_status_setting( 'mods' ); ?> /> <label for="group-video-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-video-status" id="group-video-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_video_status_setting( 'admins' ); ?> /> <label for="group-video-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php if ( bp_is_active( 'messages' ) && true === bp_disable_group_messages() ) : ?> <fieldset class="radio group-messages"> <legend><?php esc_html_e( 'Group Messages', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which members of this group are allowed to send group messages?', 'buddyboss' ); ?></p> <div class="bp-radio-wrap"> <input type="radio" name="group-message-status" id="group-messages-status-members" class="bs-styled-radio" value="members"<?php bp_group_show_messages_status_setting( 'members' ); ?> /> <label for="group-messages-status-members"><?php esc_html_e( 'All group members', 'buddyboss' ); ?></label> </div> <?php /** <div class="bp-radio-wrap"> <input type="radio" name="group-message-status" id="group-messages-status-mods" class="bs-styled-radio" value="mods"<?php bp_group_show_messages_status_setting( 'mods' ); ?> /> <label for="group-messages-status-mods"><?php esc_html_e( 'Organizers and Moderators only', 'buddyboss' ); ?></label> </div> <div class="bp-radio-wrap"> <input type="radio" name="group-message-status" id="group-messages-status-admins" class="bs-styled-radio" value="admins"<?php bp_group_show_messages_status_setting( 'admins' ); ?> /> <label for="group-messages-status-admins"><?php esc_html_e( 'Organizers only', 'buddyboss' ); ?></label> </div> */ ?> </fieldset> <?php endif; ?> <?php $group_types = bp_groups_get_group_types( array( 'show_in_create_screen' => true ), 'objects' ); // Hide Group Types if none is selected in Users > Profile Type > E.g. (Students) > Allowed Group Types meta box. if ( false === bp_restrict_group_creation() && true === bp_member_type_enable_disable() ) { $get_all_registered_member_types = bp_get_active_member_types(); if ( isset( $get_all_registered_member_types ) && ! empty( $get_all_registered_member_types ) ) { $current_user_member_type = bp_get_member_type( bp_loggedin_user_id() ); if ( '' !== $current_user_member_type ) { $member_type_post_id = bp_member_type_post_by_type( $current_user_member_type ); $include_group_type = get_post_meta( $member_type_post_id, '_bp_member_type_enabled_group_type_create', true ); if ( isset( $include_group_type ) && ! empty( $include_group_type ) && 'none' === $include_group_type[0] ) { $group_types = ''; } } } } // Group type selection if ( $group_types ) : ?> <fieldset class="group-create-types"> <legend><?php esc_html_e( 'Group Type', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'What type of group is this? (optional)', 'buddyboss' ); ?></p> <select id="bp-groups-type" name="group-types[]" autocomplete="off"> <option value="" <?php selected( '', '' ); ?>><?php _e( 'Select Group Type', 'buddyboss' ); ?></option> <?php foreach ( $group_types as $type ) : ?> <?php if ( false === bp_restrict_group_creation() && true === bp_member_type_enable_disable() ) { $get_all_registered_member_types = bp_get_active_member_types(); if ( isset( $get_all_registered_member_types ) && ! empty( $get_all_registered_member_types ) ) { $current_user_member_type = bp_get_member_type( bp_loggedin_user_id() ); if ( '' !== $current_user_member_type ) { $member_type_post_id = bp_member_type_post_by_type( $current_user_member_type ); $include_group_type = get_post_meta( $member_type_post_id, '_bp_member_type_enabled_group_type_create', true ); if ( isset( $include_group_type ) && ! empty( $include_group_type ) ) { if ( in_array( $type->name, $include_group_type ) ) { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } } else { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } } else { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } } else { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } } else { ?> <option for="<?php printf( 'group-type-%s', $type->name ); ?>" value="<?php echo esc_attr( $type->name ); ?>" <?php selected( ( true === bp_groups_has_group_type( bp_get_current_group_id(), $type->name ) ) ? $type->name : '', $type->name ); ?>><?php echo esc_html( $type->labels['singular_name'] ); ?></option> <?php } ?> <?php endforeach; ?> </select> </fieldset> <?php endif; ?> <?php if ( bp_enable_group_hierarchies() ) : $current_parent_group_id = bp_get_parent_group_id(); $possible_parent_groups = bp_get_possible_parent_groups(); ?> <fieldset class="select group-parent"> <legend><?php esc_html_e( 'Group Parent', 'buddyboss' ); ?></legend> <p class="group-setting-label" tabindex="0"><?php esc_html_e( 'Which group should be the parent of this group? (optional)', 'buddyboss' ); ?></p> <select id="bp-groups-parent" name="bp-groups-parent" autocomplete="off"> <option value="0" <?php selected( 0, $current_parent_group_id ); ?>><?php _e( 'Select Parent', 'buddyboss' ); ?></option> <?php if ( $possible_parent_groups ) { foreach ( $possible_parent_groups as $possible_parent_group ) { ?> <option value="<?php echo $possible_parent_group->id; ?>" <?php selected( $current_parent_group_id, $possible_parent_group->id ); ?>><?php echo esc_html( $possible_parent_group->name ); ?></option> <?php } } ?> </select> </fieldset> <?php endif; ?> </div><!-- // .group-settings-selections -->so i commented everything out what i dont want.
only thing is how can i select by default the last option?
mabe someone can help me point in right direction?greetz Edwin
January 28, 2023 at 9:23 am #328157Topic: remove group privacy
in forum How-to & Troubleshootingedensan
Participanthello i want all groups created be public ( so remove private and hidden) and every member can join
how can i do that?greetz Edwin
January 21, 2023 at 11:37 am #328103In reply to: Say Hi to BuddyPress 11.0.0 “La Scala”
Mathieu Viet
ModeratorHi @fantamily
Thanks a lot for your feedback. The issue is actually caused by some custom code wrongly using the
bp_get_send_message_button_argsfilter. Instead of returning an empty array to disable the private button on members profile header, this custom code retunsfalse.That being said. We should be more cautious about this potential wrong usage, so we’ll have it fixed asap (next minor version 11.1.0).
See https://buddypress.trac.wordpress.org/ticket/8800 to follow our progress about it.
January 13, 2023 at 10:00 pm #328006Anonymous User 18187419
InactiveHi, site is 3 years old, 13,000 members, approx. 1100 active daily, but not a single instance of multiple-user spam-messaging, forum spamming, blog comment spamming, etc.
The site is a (very mild) NSFW dating site, niche interest, so is a prime target for bots, but so far no big issues.
If you want to compare ideas/methods then please provide some form of contact, happy to provide info in private.
January 8, 2023 at 9:07 am #327939In reply to: Core function groups_join_group is not working
meestergijs
ParticipantIt worked. I found out that in the new theme environment students no longer see their own classes when I set the group as hidden, but when I set it to private they DO see it. So it was a very easy fix for a strange choice made by the theme.
Thanks for your reply. I will keep this in mind (add it to trello)
We can close this ticket.
December 27, 2022 at 11:36 am #327825Topic: Email Notifications not working
in group forum Requests & Feedbackstorml
ParticipantHi,
It seems like the e-mail notifications on my website using Buddypress are not working. No one is getting any e-mail notifications such as private message’s or friendship requests.
Does anyone have the same problem and/or a solution?
Thanks in advance!
December 2, 2022 at 9:10 am #327367Topic: Spam on BP support pages – contact with mods
in group forum Requests & Feedbackfawp
ParticipantNovember 29, 2022 at 7:15 am #327333Topic: Private Messages Somehow Activated
in forum How-to & Troubleshootingtsart
ParticipantI am running WordPress 6.0.3 and am on BuddyPress 10.6.0.
I turned off the Private Messaging component in BuddyPress Settings over 2 years ago. Now all of the sudden my users are getting email notifications of Private Messages. I know these are legit because they include text I wrote before I shut Messaging down due to rampant spamming.
I checked BuddyPress Settings and the Private Messaging Component is still unchecked. Is there something else I need to do to ensure Private Messaging is off?
November 22, 2022 at 5:42 am #327265Topic: Request Group Membership Form
in forum How-to & TroubleshootingJenni
ParticipantHello,
I would like to have users complete a form when they request membership to a private group.
These responses to the group access request form should be displayed against the user profile.
The responses will be used to importing into another system for creating email marketing.
Thank you for your attention.
JenniNovember 18, 2022 at 7:45 am #327236Topic: Default member profile instead of activity
in forum How-to & Troubleshootingjavigandia
ParticipantIs it possible to default to member’s profile instead of activity?
It would be very useful for the work I am doing, it is an intranet of a corporation and the most important thing is to be able to access the contact information.
I would also like to know if it is possible to make a private group where the activity does not appear but the members that compose it can be seen.
Many thanks.November 12, 2022 at 1:09 am #327158Topic: Assembling of the buttons in userprofiles
in forum How-to & Troubleshootingwerny
ParticipantI installed the plugin “Block, Suspend, Report for BuddyPress”.
But I noticed that on smaller screens not all buttons fit underneath the profile pic and so my Theme Gwangi will create a Button “More” with some type of submenu with more options.See screenshot:

The most imprtant buttons for me are “Add as Friend” and “Private Message”
The Buttons “Bock user” and “Report User” are not soo important .Is there a way to arrange the buttons in some other order?
I want the “Bock user” and “Report User” buttons in the submenu (More).November 11, 2022 at 1:43 pm #327151Topic: Groups Page Selector
in forum How-to & Troubleshootingjavigandia
ParticipantIn the groups page the Selector does not work with the options “Newest”, “Oldest”, “Alphabetical” I have the latest version of WordPress 6.1 it is not a multisite installation, version BuddyPress 10.6.0 I have tried both with the Kadence theme and the BuddyX theme and both have the same problem.
Can someone please confirm if it is a problem only with my site?
My site is a private intranet and I can’t pass a link for them to test.
Is there a place where I can check that the new version of Buddypress works on the groups page with the “Newest”, “Oldest”, “Alphabetical” Selector?
Thank you very much.November 9, 2022 at 10:01 pm #327116In reply to: Private message no email notifications
richardrcook2
ParticipantHello. For years my site has had no problems with sending private message notifications via email until now. I can’t figure out what caused this to happen. My dating website is https://romancingrarehearts.com/ I don’t know if it’s a BuddyPress or WordPress issue. Can anybody help me with this problem please?
The version of WordPress I’m using is 6.1, and the version of BuddyPress is 10.6.0. And I’m using the WordPress theme twenty-fifteen.
Let me know if you need more information. Thanks for your time and help!
November 8, 2022 at 2:19 am #327070Topic: hiding dashboard from buddypress users
in forum How-to & Troubleshootingvintagefan74
ParticipantI’m new so excuse me if this is a simple fix. I have a private/login required buddypress area.
-how do I remove the upper left dashboard access for site users?
-What user roll would I set up new users under? I don’t want them to have any dashboard permission, they just need to be able to do user functions (set up profile, posts, etc. etc.) Thanks.
October 31, 2022 at 4:02 pm #326958yas12
ParticipantRight now I have a problem My wordpress site only allows admins to set the privacy of groups. Can I change this setting?
October 31, 2022 at 3:08 pm #326957honoluluman
ParticipantHello,
I am trying to set by default target and _blank in a link tag inside the content of private messages.
I have tried somethink like that
add_filter( 'bp_messages_allowed_tags', 'filteratag' ); function filteratag($messages_allowedtags) { $messages_allowedtags['a'] = array( 'aria-label' => array(), 'class' => array(), 'data-bp-tooltip' => array(), 'id' => array(), 'rel' => array(), 'tagret' => '_blank', ); return $messages_allowedtags; }but didn’t worked. Could someone help me please?
-
AuthorSearch Results