What’s amazing is that the example used is EXACTLY what I was looking for! wow.
Thanks Universe! & Whoever decided to use THAT particular example.
/*
https://codex.buddypress.org/extending-buddypress/bp-custom-php/
Removing the links automatically created in a member's profile may be done by adding the following function to the bp-custom.php file.
*/
function remove_xprofile_links() {
remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 50, 2 );
}
add_action( 'plugins_loaded', 'remove_xprofile_links' );