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 | Nov 26, 2022 |
The following page on the codecanyon.net site describes the steps necessary to make the Sabai Discuss Q & A Question Page compatible with the Divi Builder and other page builders. This site currently uses the Elegant Themes...
Read MorePosted by netpressionist | Nov 25, 2022 |
The following CSS worked for me: #footer-info { display: none } You paste the above CSS at the following location: navigate to back-end admin | Extra | Theme Options | General | Custom CSS I obtained the CSS solution from the...
Read More