Just navigate to this page: /wp-admin/users.php?page=bp-profile-edit&user_id=1802
where 1802 – is the ID of that user. Also, all usernames on this page /wp-admin/users.php?page=bp-signups
are links to profiles. So you can open there Extended profile link at the top.
Thanks for the response.
The first link you shared isn’t working for me. They don’t have a user ID when they’re pending, only a signup ID. I tried the signup ID in that link anyways, it did not work. It took me to a different user (with that user ID).
Also, the usernames on that page are links to activate the user, not to the profile.
You are right, my bad.
But that’s a good (handy) plugin idea. Noted to self, perhaps will create it soon (will update this topic).
Sure!
Do you know if there’s any workarounds to this? Even a code snippet I can throw in a plugin to get something, even if it’s not elegant at all?
I really need to be able to view pending user’s fields ASAP.
Any solution to view extended profiles before approving?
I’m still not seeing a solution yet or workaround even here.
Use this filter hook: apply_filters( 'bp_members_signup_custom_column', '', $column_name, $signup_object );
Found at the bottom of: buddypress\bp-members\classes\class-bp-members-list-table.php
code – GIST
I’m using a child theme so how exactly do I add this in?
Place it in bp-custom.php
Then it won’t matter which theme you use.
Ok so it goes in the plugins folder alone? Not in the buddypress folder?
Please take a minute to read this post: https://codex.buddypress.org/themes/bp-custom-php/
Short answer: /wp-content/plugins/bp-custom.php
I just added this into a bp-custom.php file and dragged into the wp-content/plugins folder:
<?php
apply_filters( ‘bp_members_signup_custom_column’, ”, $column_name, $signup_object );
?>
and nothing changed when I went into manage sign ups. I still cannot see the extended fields. Was I supposed to upload more than that? I see you linked to this also, which may be more of what I need: https://gist.github.com/shanebp/574ce3b95e33cb5bcad2c823bb666a00
Place only the code from the gist into your bp-custom file.
Thanks that worked. It just is a mess of meta fields in the user signups section. There is no way to make it appear cleaner or will the admin get this all in the user sign up email?
Thanks Guys!
The code you provided worked great with the bp-custom.php
Was also able to display only a single field as well (instructions are commented in the code)
How do I set a field where admin can write, user sees it but cannot change it.
Response: info@hillerin.de