Share Pastebin
Guest
Public paste!

burtadsit

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