Introduction
BuddyBoss does not provide an option to remove or hide the sign-in button on the login page. You can hide it by adding a small custom function to your active theme. This guide explains how you can remove the sign-in button on the login page.
Custom Workaround
Before proceeding, make sure you have a complete site backup.
- In your WordPress admin dashboard, go to Appearance > Theme Editor.
- Under Select theme to edit, choose your active theme (preferably BuddyBoss Child Theme), then click Select.
- From the Theme Files list, click Theme Functions (functions.php).
- Paste the following code just before the closing PHP tag (?>):
function bb_login_custom_css() { ?>
<style>
body.login .login-heading h1 {
display: none !important;
}
</style>
<?php }
add_action( ‘login_enqueue_scripts’, ‘bb_login_custom_css’ );
- Click Update File to save your changes.
Note: Modifications are typically considered custom work, but we are making an exception in this case. Please review the BuddyBoss Support Policy.
Troubleshooting and FAQs
Q: The sign-in button is still visible, what should I check?
A: Make sure the code is added to the active theme’s functions.php and clear any caches.
Q: Will this affect the login functionality?
A: No, this only hides the visual element and does not affect login processing.
Q: Can I hide other elements on the login page?
A: Yes, you can target other login page elements using custom CSS in the same function.
Q: Can I revert this change easily?
A: Yes, remove the code from functions.php and save.
Q: Who can I contact for further assistance?
A: Please review the BuddyBoss Support Policy or consult a developer.