Introduction
By default, BuddyBoss does not provide an option to hide the triple dots (more options menu) on the Activity page. Using a simple CSS snippet, you can remove this menu to simplify the activity feed interface.
Custom Workaround
Follow the steps below to hide the triple dots on the Activity page:
- Go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
- Append the following:
.bb-activity-more-options-wrap.action {
display: none !important;
}- Save changes.
Troubleshooting and FAQs
Q: Will this remove activity actions like edit or delete?
A: Yes. Hiding the triple dots also hides the actions available within that menu.
Q: The triple dots are still visible after adding the CSS. What should I do?
A: Clear your site cache and browser cache. If the issue persists, submit a ticket to the support team for further assistance.
Q: Can I hide the triple dots only for specific users or roles?
A: Not with CSS alone. This would require custom development using PHP or JavaScript.
Q: Does this apply to mobile views as well?
A: Yes. This CSS snippet applies to all screen sizes, including mobile.