Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: text in User-Profile: some words are linked, others are not ?


Jeff Sayre
Participant

@jeffsayre

@Erich73

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' );
?>

Skip to toolbar