Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,032
- How-to & Troubleshooting
- 129,676
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,181
-
function my_fix_linking(){
remove_filter( \'bp_the_profile_field_value\',
\'xprofile_filter_link_profile_data\', 2 );
add_filter( \'bp_the_profile_field_value\',
\'my_filter_link_profile_data\', 2, 3 );
}
add_action(\'bp_member_theme_functions\', \'my_fix_linking\');
This code seems to be wrong. Anyone can figure out another working code?