Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,991
- How-to & Troubleshooting
- 129,408
- Creating & Extending
- 25,786
- Requests & Feedback
- 9,486
- Third Party Plugins
- 9,786
- Showcase
- 3,318
- Ideas
- 1,393
- Miscellaneous
- 9,169
-
As jjj said, you can turn it off yourself. Do you have a bp-custom.php file? If not, create one with the code below, then stick that file in /wp-content/plugins/.
<?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' );
?>
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS