-
Anonymous User 16480907 replied to the topic Hide profile fields in the forum How-to & Troubleshooting 2 years, 5 months ago
check this url profile field visibility
-
Anonymous User 16480907 replied to the topic Remove invite members link for group members in the forum How-to & Troubleshooting 2 years, 5 months ago
use this code.
/**
* Removes send invite tab according to Group Invitations setting.
*
* @since 2.2.0
*/
function remove_send_invite_tab() {
if ( ! bp_is_group() || ( bp_is_current_action( ‘admin’ ) && bp_action_variable( 0 ) ) || is_super_admin() ) {
return;
}// Add the admin subnav slug you want to hide in the…[Read more]
-
Anonymous User 16480907 replied to the topic Remove invite members link for group members in the forum How-to & Troubleshooting 2 years, 5 months ago
/**
* Removes send invite tab according to Group Invitations setting.
*
* @since 2.2.0
*/
function remove_send_invite_tab() {
if ( ! bp_is_group() || ( bp_is_current_action( ‘admin’ ) && bp_action_variable( 0 ) ) || is_super_admin() ) {
return;
}// Add the admin subnav slug you want to hide in the following array.
$hide_tabs =…[Read more] -
Anonymous User 16480907 replied to the topic bp-custom.php – Help in the forum Installing BuddyPress 2 years, 5 months ago
you can add the bp-custom.php file to your WordPress theme or child theme. once you created the file, you can add your code snippet between the start and end symbols:
<?php .... ?>
thanks
@anonymized-16480907
Active 2 years, 1 month ago