After adding the said code, I refreshed the page, but I can still see orders icon, i used:
// Remove profile tabs
function bp_remove_profile_tabs() {
global $bp;
unset($bp->bp_nav[‘orders’]);
}
add_action(‘bp_init’, ‘bp_remove_profile_tabs’, 9999);
Do I need to activate child theme after uploading this onto functions?