Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Profile text data is automatically hyperlinking


buddypresser
Participant

@buddypresser

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.

Skip to toolbar