-
Alan Teh replied to the question Hiding menu items in Group and Profile using CSS in the forum BuddyBoss theme 9 years, 4 months ago
The above all works for me in a desktop browser. In the mobile Buddyboss theme the menu items still show up.
Any clues as to why this is so?Thanks
-
Alan Teh replied to the question Hiding menu items in Group and Profile using CSS in the forum BuddyBoss theme 9 years, 4 months ago
Thanks but I managed to figure out. Removing ‘Wall’ and ‘Friends’ from the Profile menu :
#activity-personal-li {
display: none; !important;
}#friends-personal-li {
display: none; !important;
} -
Alan Teh replied to the question Disable or Hide Leave Group button in the forum BuddyBoss theme 9 years, 4 months ago
Thanks very much – that worked!!
-
Alan Teh started the question Hiding menu items in Group and Profile using CSS in the forum BuddyBoss theme 9 years, 4 months ago
For a menu tab in a Group (site/groups/groupname) , I used
/* Hide Group Tabs */
#nav-notifications-groups-li {
display: none; !important;
}
#members-groups-li {
display: none; !important;
}in my Buddyboss child theme to hide the email notifications and members items. Worked well
Now for the Profile (site/members/username/profile/)
I am…[Read more] -
Alan Teh replied to the question Disable or Hide Leave Group button in the forum BuddyBoss theme 9 years, 4 months ago
Hi thanks for the tip. I’m still trying to get it to work but the Leave group button is still there 🙁
-
Alan Teh started the question Renaming Groups in Profile in the forum BuddyBoss theme 9 years, 4 months ago
In the Profile menu, is there an easy way to rename “Groups” to something else?
I looked up support in Buddypress and there was mention of using the language files here:
but it looks pretty complex and there are so many instances of Groups in the .pot…[Read more] -
Alan Teh replied to the question How do I create a table? in the forum BuddyBoss theme 9 years, 4 months ago
I highly recommend the Wordpress plugin Tablepress. You can create excellent tables. They tables scroll nicely to accommodate screen sizes.
-
Alan Teh replied to the question Remove Social Media Buttons in the forum BuddyBoss theme 9 years, 4 months ago
Thanks!
-
Alan Teh started the question Remove Social Media Buttons in the forum BuddyBoss theme 9 years, 4 months ago
Sorry for this noob question but I can’t seem to find a way to remove the Social Media buttons at the footer.
Please advise.Thanks!
-
Alan Teh started the question Disable or Hide Leave Group button in the forum BuddyBoss theme 9 years, 4 months ago
I am using only Private forums and I found a solution using the custom.css
* Hide Leave Group */
.group-button.leave-group{display:none;}
.buddypress div#item-header div#item-header-content #item-buttons {
height: 0px;
}But it works only on full browser but not on the mobile theme where I can still see it. Any clues?
Thanks
-
Alan Teh replied to the question Disable display of Group privacy label in the forum BuddyBoss theme 9 years, 4 months ago
Thank you. That worked like magic!
-
Alan Teh started the question Disable display of Group privacy label in the forum BuddyBoss theme 9 years, 4 months ago
Howdy!
I wonder if there is an easy way to disable the Group privacy label just below the Group header (i.e. the Public/Private/Hidden label)?
For example I’d like to remove the label “Hidden Group” here
Thanks!
-
Alan Teh replied to the question Want to Hide Redundant Members Search Box (redux) in the forum BuddyBoss theme 9 years, 6 months ago
Thanks so much! That worked!
-
Alan Teh replied to the question Want to Hide Redundant Members Search Box (redux) in the forum BuddyBoss theme 9 years, 6 months ago
PM you
-
Alan Teh replied to the question Want to Hide Redundant Members Search Box (redux) in the forum BuddyBoss theme 9 years, 6 months ago
Sorry no, that didn’t work. The redundant Member search box is still there 🙁
-
Alan Teh replied to the question Pagination of Members listing problem in the forum BuddyBoss theme 9 years, 6 months ago
Yes thanks
-
Alan Teh replied to the question Want to Hide Redundant Members Search Box (redux) in the forum BuddyBoss theme 9 years, 6 months ago
No, what’s that?
-
Alan Teh started the question Want to Hide Redundant Members Search Box (redux) in the forum BuddyBoss theme 9 years, 6 months ago
Hi, I tried the solution posted here
https://www.buddyboss.com/support-forums/topic/want-to-hide-redundant-members-search-box/
which is to add this
#buddypress #members-dir-search{display:none;}
to the Global styles section of the custom.css in the BB child theme
but it didn’t workWhat am I doing wrong?
Thanks
-
Alan Teh replied to the question Pagination of Members listing problem in the forum BuddyBoss theme 9 years, 6 months ago
This was the buggy code in functions.php which was used to filter out some individuals
//exclude user view in online widget who online and recently online
function custom_bp_core_get_users($users, $params) {
$users_ids_to_hide = array(1912,1922,1937);if (isset($users['users'])) {
foreach($users['users'] as $user_idx => $user) {
if…[Read more] -
Alan Teh replied to the question Pagination of Members listing problem in the forum BuddyBoss theme 9 years, 6 months ago
Oh I think the problem must be somewhere in the functions.php code
When I copy that to another theme, the pagination problem re-appearsThanks and sorry for the trouble
- Load More