burtadsit
By: a guest | Apr 23rd, 2009 | Syntax:
PHP | Size: 0.58 KB | Hits: 486 | Expires: Never
function my_no_links(){
remove_filter( 'bp_the_profile_field_value','xprofile_filter_link_profile_data', 2 );
add_filter( 'bp_the_profile_field_value','my_no_links_filter', 2, 3 );
}
add_action('plugins_loaded', 'my_no_links');
function my_no_links_filter($field_value, $field_type = 'textbox', $field_id){
// specify the field id's that you do not want to have links in them in the $no_links array
$no_links = array(1
,5
,99
);
if ( in_array((int
)$field_id, $no_links))
return $field_value;
else
return xprofile_filter_link_profile_data($field_value, $field_type);
}