Release Notes

Removed online for month
Added Order the users by Name.
Avatar Gallery will show 70 members per page

  • I have facebook theme.  Where should I see this members icon?

  • I dont know about the facebook theme sorry

     

  • Am I guessing right, that this overwrites instead of extend the original members plugin?

    How would I go about having a tab that shows members only by a certain metadata? For example integration with this: http://community.elgg.org/plugins/385045/4.1/featured-premium-members would be great, or the profile manager somehow, so that one can show tabs for the different user categories.

    And alphabetic view with letter buttons as requested above would be indeed great too.

  • Is this possible to show how many new user have been created from last admin login to present? please let me know if it possible

  • how do i get the names to display in alphabetical order right now there showing as order of time of join??

  • Never mind figured it out!

            $db_prefix = elgg_get_config('dbprefix');
            $joins = array("JOIN {$db_prefix}users_entity u on e.guid = u.guid");
            $options['joins'] = $joins;
            $options['order_by'] = "u.name ASC";
            $content = elgg_list_entities_from_metadata($options);

     

  • How would i show profiles that don't have a profile type listed with profile_manager plugin?

  • I'm not sure what went wrong, but I over wrote my members directory in /mod and I see NO difference :( I don't see tabs, etc. I ran update.php on my site and put the mod at the bottom of the list but still can't see anything 

  • Is there an easy way to hide all banned users from all areas, except the Banned tab?

  • Satheesh, I hope you're still around. I tried the following tip:

    if you want to chage other tabs too othen add 'size' => 'medium' to $options array...

    and all works perfectly except the "Online" tab.

    I've tried it before and after $content and it refuses to let go the "Tiny" icon.

    Can you or some other reader help?

    Thanks in advance.

  • @jhoneK,

    you can use this code for getting the online users... here you can chage the icons size too

    = elgg_list_entities_from_relationship(array(
            'type' => 'user',
            'limit' => false,
            "relationship" => "member_of_site",
            "relationship_guid" => $vars["config"]->site_guid,
            "inverse_relationship" => TRUE,
                    "joins" => array("JOIN " . $vars["config"]->dbprefix . "users_entity ue ON e.guid = ue.guid"),
            "wheres" => array("ue.last_action >= " . (time() - 600)),
            "order_by" => "ue.last_action desc",
            "full_view" => FALSE,
            "pagination" => FALSE,
                    "list_type" => "Gallery",
                    "gallery_class" => "elgg-gallery-users",
                    "size" => "tiny",
                    );
    );

  • How can I fix this name issue:

  • 1.9 version will great...

Thuvalpakshi

I will do it because I think I can

Project Info

Stats

  • Category: User admin
  • License: GNU General Public License (GPL) version 2
  • Updated: 2014-11-17
  • Downloads: 4030
  • Recommendations: 29

Other Projects

View Thuvalpakshi's plugins