All members tab / count
-
Hi all,
Wordpress 4.0, BP 2.1.1
I would like to hide / remove the all members tab and or its count on the members page, I found some code which I have pasted below, this works but also causes problems with my search form for searching for profiles within the directory! is there a way around this? thanks
function bp_remove_allmembers_tab_js_script(){ ?>
<script type=”text/javascript”>
var jq = jQuery;jQuery(document).ready(function (jQuery) {
jq(‘#members-all’).removeClass(‘selected’).hide();
jq(‘#members-personal’).find(‘a’).trigger(‘click’);
});
</script>
<?php }
add_action(‘wp_footer’, ‘bp_remove_allmembers_tab_js_script’);
- The topic ‘All members tab / count’ is closed to new replies.