Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,003
- How-to & Troubleshooting
- 129,568
- Creating & Extending
- 25,789
- Requests & Feedback
- 9,496
- Third Party Plugins
- 9,791
- Showcase
- 3,316
- Ideas
- 1,385
- Miscellaneous
- 9,169
-
The xprofile_filter_link_profile_data() function takes 3 params nicola. You are telling wp that the function call takes only 1 with add_filter(‘whatever’,’something’,1,1)
There are no defaults for that xprofile function so it crashes. Gotta specify 3 and pass 3 params.
add_filter(‘whatever’,’something’,1,3)