How to remove links for xprofile data fields type is email and url?
-
Hi All,
Actually my requirement is to remove the links for xprofile data fields which are displaying other user profile pages.
And I am using the below code
function remove_links(){
remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 );
remove_filter( ‘bp_get_the_profile_field_value’, ‘wpautop’);
remove_filter( ‘bp_get_the_profile_field_value’, ‘make_clickable’ );
}
add_action( ‘bp_init’, ‘remove_links’ );It is working only for text fields, where as I required to remove event the field types email and url.
Thanks Inadvance
https://www.ads-software.com/plugins/buddypress-xprofile-custom-fields-type/
- The topic ‘How to remove links for xprofile data fields type is email and url?’ is closed to new replies.