Hi there
In course Group page, How can I remove the home tab and make the activity tab as the default tab for groups
Please Check my screenshot
https://monosnap.com/file/W4sO5OVMBAP8PSwTCbXNcIvaWZEzwk
Is it possible?
Thanks in advance.
Also, please let me know, how can I change the "Group" text in course page to another text.
Please check my screenshot:
https://monosnap.com/file/ublhw3xrDjBLMPVAVHdQvbNT3Rwt31
Is it possible?
Kindly please check and let me know.
Hello @Chamruntraining,
These groups page are the part of 'Buddypress' that we are using ,
Please paste this snippets in your wp-admin >>> plugins >>> editor >>> wplms-customizer plugin >>> wplms-customizer.php
add_action( 'bp_actions', 'remove_member_profile_tabs', 5 );
function remove_member_profile_tabs() {
global $bp;
bp_core_remove_nav_item( 'home' ); //for home tab removal
bp_core_remove_nav_item( 'activity' ); //for activity tab removal
bp_core_remove_nav_item( 'forums' ); //for forums tab removal
bp_core_remove_nav_item( 'groups' ); //for group tab removal
bp_core_remove_nav_item( 'messages' ); //for messages tab removal
bp_core_remove_nav_item( 'friends' ); //for friends tab removal
bp_core_remove_nav_item( 'course' ); //for course tab removal
}
If you want to change text 'Group' to another one use loco translate plugin for same,
Refer:
https://wplms.io/support/knowledge-base/translate-using-loco-translate-plugin/
Translation guide:
https://wplms.io/support/forums/topic/translation-guide-by-vibe-themes-support/
Thanks,