Forum

Whether it's a plugin thats causing issues, a theme, or just needed help with styling your site...We can help! Live Person Support for all your Wordpress Needs!

Welcome Guest

Pages: 1
View all members?
sunrisePostDec 15 2011, 08:12 AM

Newbie
Posts: 7
Registered:
Dec 14 2011, 02:46 AM
Normal topicView all members?

Can there be a way to view all registered members?

It would be nice if you could click on 8 members and see a list of the members and then click on a name to send one of them a Private Message.

Wonderful forum and plug-in! Thanks so much!



Shrink, Track, Share, Control ... Dominate
sunrisePostDec 18 2011, 12:40 PM

Newbie
Posts: 7
Registered:
Dec 14 2011, 02:46 AM
Normal topicRe: View all members?

I just figured out a great way to implement a membership list directory that shows users' names and hooked it up to the Private Message center!

I installed amr-users, a highly customizable plugin that lets you display members (usernames) in a directory on a page (which I made private).

I put that page as a sub-page of the Message Center page so it displays as a link in a cookie at the top of the message center page.

At the top of the directory listing, I have "To send a message, enter or copy-and-paste the member’s username."

To Send a message is linked to the Send Message page.

It flows seamlessly that way.

RupertdacatPostJan 01 2012, 10:38 PM

Newbie
Posts: 14
Registered:
Dec 18 2011, 01:56 PM
Normal topicRe: View all members?

Quote from sunrise on Dec 18 2011, 12:40 PM

I installed amr-users, a highly customizable plugin that lets you display members (usernames) in a directory on a page (which I made private).

Sorry for the basic question, but how do you make a page private?

Thanks,

Rupe

sunrisePostJan 08 2012, 08:03 PM

Newbie
Posts: 7
Registered:
Dec 14 2011, 02:46 AM
Normal topicRe: View all members?

Hi Rupe. To make pages private, I am using another plugin called User Access Manager (UAM). It's a simple but powerful plugin that manages the access to your posts, pages, categories and files.

LudoviclPostMay 02 2012, 10:16 AM

Newbie
Posts: 6
Registered:
May 02 2012, 04:08 PM
Normal topicRe: View all members?

Hello,

I'm testing this plugin and I like it.
I want to translate it in french.

My question is :
I want that users can send a message to the administrator without access to other users.
how is possible ?

Thanks

Ludovic

ikookmaarPostDec 14 2012, 05:41 AM

Newbie
Posts: 4
Registered:
Dec 06 2012, 10:37 AM
Normal topicRe: View all members?

A Directory (a list of all members) is now a feature of the current version (10.0.10).
You might argue if displaying all your members, even to eachother, is a safe thing to do...
I think at least other users login names should be kept secret at all times! :o

So I have "hacked" the plugin to at least not show login names, but display names instead by simply replacing user_name by display_name everywhere in search.php and in pm-class.php.

In our case we have also programatically forced display names to be the first and the last name, by adding the below code to our (child)theme's functions.php:

//Force display_name (name displayed on the site) as first + lastname
class myUsers {
static function init() {
// Change the user's display name after insertion
add_action( 'user_register', array( __CLASS__, 'change_display_name' ) );
}

static function change_display_name( $user_id ) {
$info = get_userdata( $user_id );

$args = array(
'ID' => $user_id,
'display_name' => $info->first_name . ' ' . $info->last_name
);

wp_update_user( $args ) ;
}
}

myUsers::init();

This combination also improves searching in Cartpauj-PM by making it possible to find by (typing a part of) the first name OR of the lastname :D ...!

cartpaujPostDec 14 2012, 04:38 PM

Administrator
Posts: 2976
Registered:
Apr 27 2010, 05:10 PM
Normal topicRe: View all members?

The next version of the plugin will allow the administrators to set what is shown for the user name, and will also have an option to disable the directory completely as well, and definitely the directory needs to be paginated, and searchable unlike it is now. I was in a rush to get this out to correct the WP 3.5 errors so the directory didn't get much love :D .

Cartpauj...it's pronounced (cart.paw.ja) - Donate!
Mingle Forum Video Tutorials

Pages: 1
Mingle Forum by Cartpauj | Version: 1.1.0beta | Page loaded in: 0.199 seconds.


Shrink, Track, Share, Control ... Dominate