Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,042
- How-to & Troubleshooting
- 129,692
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,180
-
Throwing this into bp-custom.php…
function remove_xprofile_links() {
remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 2, 2 );
}
add_action( 'plugins_loaded', 'remove_xprofile_links' );
…worked for me.
If you don’t have a bp-custom.php file, create one and put that code in it, then save it into the wp-content/plugins/ directory.