Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,055
- How-to & Troubleshooting
- 129,795
- Creating & Extending
- 25,859
- Requests & Feedback
- 9,500
- Third Party Plugins
- 9,806
- Showcase
- 3,317
- Ideas
- 1,384
- Miscellaneous
- 9,176
-
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)