Hi Andrea,
I would like to remove the two filters “Active Members” & “My Friends” which are displayed above search results
Reason : they are unnecessary and quite confusing to my users.
I realise these are provided by Buddypress core, not by BP Profile Search.
Anyway, Google Gemini suggests these snippets, neither work for me.
CSS:
/* Hide the Active Members and My Friends tabs on the Members Directory / Search page */
#members-directory-form .item-list-tabs,
.buddypress-wrap .item-list-tabs #nav-bar-filter {
display: none !important;
}
PHP :
// Hide the default broad members directory and only display explicit search results
add_filter('bps_hide_directory', '__return_true');
Can you please advise?