Introduction
By default, BuddyBoss does not provide an option to hide the textbox when users request access to a private group. Using a CSS snippet, you can remove this textbox to simplify the group request process or control the information submitted by users.
Custom Workaround
Follow the steps below to hide the textbox:
- Go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
- Append the following:
#request-membership-form #group-request-membership-comments {
display: none;
}- Save changes.
Troubleshooting and FAQs
Q: Will this prevent users from requesting group access?
A: No. The textbox is hidden, but users can still submit a request using the form.
Q: The textbox is still visible after adding the CSS. What should I do?
A: Clear your site cache and browser cache. If it still appears, submit a ticket to the support team for assistance.
Q: Can I hide the textbox for specific groups only?
A: Yes. Use the unique group ID in the CSS selector, for example:
#group-123 #group-request-membership-comments { display: none; }Q: Will this work on mobile devices?
A: Yes. This CSS snippet applies to all screen sizes.
Screenshots
Without code
With code