Replies
Viewing 10 posts - 7,891 through 7,900 (of 19,326 total)
- This reply has been marked as private.
You are welcome.
Hi Frederick,
Thank you for the question.No, It is not available for MediaPress currently.
Regards
Brajesh- This reply has been marked as private.
- This reply has been marked as private.
- This reply has been marked as private.
- This reply has been marked as private.
- This reply has been marked as private.
- Brajesh Singh on June 17, 2020 at 7:30 am in reply to: [Resolved] Profile Visibility Plugin not showing new members #30935This reply has been marked as private.
- Brajesh Singh on June 17, 2020 at 7:28 am in reply to: [Resolved] How to get all options from select field xprofile ? #30933
Hi,
You can use the code like this to get an array of field names indexed by field id$profile_fields = array(); $groups = bp_xprofile_get_groups( array( 'hide_empty_groups' => true, 'fetch_fields' => true, ) ); foreach ( $groups as $group ) { foreach ( $group->fields as $field ) { $profile_fields[ $field->id ] = $field->name; } }I hope you can take from there.
Regards
Brajesh