Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,832
- How-to & Troubleshooting
- 129,806
- Creating & Extending
- 25,867
- Requests & Feedback
- 9,510
- Third Party Plugins
- 9,821
- Showcase
- 3,317
- Ideas
- 1,382
- Miscellaneous
- 9,177
-
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)