Hello,
I think the new drop-down (recent/popular/active) at Members Page is excellent!
But more important would a “women / men”-dropdown be! I think you should have that option to seek just “men” or just ‘”women” as there are really few who look for both genders, right?
Anyway, I have put the Search Form on Members Page to get that option. But updating to SweetDate 3, it has dissapeared.
Could you please help me with this?
I have this code in Child Theme > functions.php:
/*
RIGHT SIDEBAR MEMBERS PAGE
*/
add_filter(‘kleo_bp_directory_main_cols’, ‘kleo_custom_members_cols’);
function kleo_custom_members_cols() {
return ‘eight’;
}
add_action(‘bp_after_directory_members’, ‘kleo_add_buddy_sidebar’, 99);
function kleo_add_buddy_sidebar() {
get_sidebar(‘buddypress’);
}
/Jenni