Get XProfile Field outside of BuddyPress!
-
For the life of me, I cannot seem to fetch an xprofile field that I need to put into a custom email inside my custom plugin.
I have scoured these forums all day and tried everything but nothing seems to work.
– Custom plugin.
I want to custom field “Name” that the person is required to fill out when registering for the site.function aa_activated_user_email( $msg, $user){ global $bp; $users_name = bp_get_member_profile_data( 'field=Name&user_id=' . $user->ID ); $msg = "<h1>A User has been activated!</h1>"; $msg .= "<p>Name: <strong>$users_name</strong><br>"; }
This just throws an error:
PHP Fatal error: Call to undefined function bp_get_member_profile_data()
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.