Hi
I want to remove, <span style="color: #000000; font-family: Helvetica, Arial; font-size: 12pt;">In batch menu, hide STATISTICS and ACTIVITY</span>
This reply has been marked as private.
Well the activity tab is not added by wplms or any of its plugins .
That is coming from buddypress itself which added the groups functionality . So please contact the buddypress support on this .
to hide the stats tab in groups please try adding this given code in your wplms-customizer.php file in wplms customizer plugin ::
function remove_group_options() {
remove_action( 'bp_init','wplms_batch_statistics_register_group_extension');
}
add_action( 'bp_include', 'remove_group_options' );
It removed statistics only.
How to remove activity?
Well that is added by the buddypress plugin itself .I tried to remove it by some custom code but failed .
Please contact the buddypress support on this .