You could temporarily turn off pretty permalinks and you’ll see their id in the url.
You can also use this mini-plugin to show their user id in the profile
add_filter( 'get_profile_info_keys','bb_member_id_in_profile',255);
function bb_member_id_in_profile($keys) {
global $self;
if (empty($self)==true && isset($_GET['tab'])==false && bb_get_location()=="profile-page") {
(array) $keys=array_merge(array_slice((array) $keys, 0 , 1), array('ID' => array(0, __('Member #'))), array_slice((array) $keys, 1));
}
return (array) $keys;
}
By the way, I am trying to understand why so few people ask these kinds of plugin specific questions on the page for the plugin itself. Can you give me any insight?
Hi _ck_ and thanks for the answer. The function above works perfectly when viewing the users profile page, is there any easy way to see the user id on the bbPress users.php page? would save having to go to each users profile to get the id.
I did ask on the plugin page, but also asked here as this forum seems to get a lot more replies.
For a moment I didn’t realize what you were saying because 0.9 shows the user id in the admin user list.
Apparently it’s been removed in 1.0, I’ll file a bug on trac.
The mini-plugin you mentioned: do you just stick that file in the plugins folder? Where do you post it to get it to work? I’m having the same issue.
sadly looks like we are stuck without an answer to this issue I went to the developers website and he has stopped working on this plugin.
Just put this in your theme’s functions.php
(create one if you don’t have one). Also put this in the beginning of code – <?php
and this at the end – ?>