BuddyPress: How to hide the WordPress top admin bar for Logged Out users
Go to: WordPress Admin | Settings BuddyPress | Options Deselect – Toolbar: Show the Toolbar for logged out users Then: Save Settings
Read MorePosted by netpressionist | Dec 6, 2022 |
Go to: WordPress Admin | Settings BuddyPress | Options Deselect – Toolbar: Show the Toolbar for logged out users Then: Save Settings
Read MorePosted by netpressionist | Dec 4, 2022 |
add_filter( ‘bp_settings_show_user_data_page’, ‘venutius_remove_data_page’ ); function venutius_remove_data_page($filter) { return false; } Source:...
Read MorePosted by netpressionist | Dec 4, 2022 |
function profile_visibility_subnav() { global $bp; bp_core_remove_subnav_item( ‘settings’, ‘profile’ ); } add_action( ‘bp_setup_nav’, ‘profile_visibility_subnav’,999 ); Source:...
Read MorePosted by netpressionist | Oct 2, 2022 |
Adding the following line to the WOffice child theme’s functions.php worked for me add_filter(‘woffice_groups_personal_li’, ‘__return_false’);
Read MorePosted by netpressionist | Aug 7, 2021 |
adding the following lines to my theme’s customize | css worked for me .field-visibility-settings-toggle { display:none; } and .field-visibility-settings-notoggle { display:none; } I obtained this solution at the following...
Read More