Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted March 20, 20159 yr About This File This plugin (widget) will display a block with the latest registered members on your board. Widget settings: Format user links according to the group color Number of users to show Choose which user groups will be able to view the block.
April 12, 20159 yr Author On 4/11/2015 at 11:42 PM, Joel R said: Can I ask how this is is different from the default Latest Members?Hum? There is a Latest Members on IPS4? As far as I know, it shows only the latest member on stats widget.
March 26, 20186 yr In my 4.3 beta version, it looks like a ghost user (see second user below) has been logged by the widget for some strange reason. Any ideas or solutions to fix?
June 7, 20186 yr On 3/26/2018 at 5:08 PM, JTrollerb123 said: In my 4.3 beta version, it looks like a ghost user (see second user below) has been logged by the widget for some strange reason. Any ideas or solutions to fix? Same here, not really usable. But never mind, the default member widget is able to show the last registered users if the settings are accordingly. To avoid headache to customers it is maybe an idea to remove the plugin from the marketplace because the default software does this job very well. Edited June 7, 20186 yr by Ramsesx
March 11, 20213 yr I know this is an old topic/plugin, but is it possible to edit the plugin so as to prevent Banned Members from showing please? @All Astronauts If so, how pretty please?
March 11, 20213 yr On 3/11/2021 at 2:57 PM, Petra Jane said: I know this is an old topic/plugin, but is it possible to edit the plugin so as to prevent Banned Members from showing please? @All Astronauts If so, how pretty please? At the plugin 's widget file find this code: foreach( \IPS\Db::i()->select( '*', 'core_members', NULL, 'member_id DESC', array( 0, $nr ) ) as $member ) And replace it with this: /* Exclude banned members */ $where = array( array( 'temp_ban = ?', 0), ); foreach( \IPS\Db::i()->select( '*', 'core_members', $where, 'member_id DESC', array( 0, $nr ) ) as $member ) Save the changes afterwards and you are good to go.
March 11, 20213 yr Thank you @Miss_B for this. I've changed the code, and it works beautifully! Thank You so much! Edited March 11, 20213 yr by Petra Jane
March 11, 20213 yr On 3/11/2021 at 9:28 PM, Petra Jane said: Thank you @Miss_B for this. I've changed the code, and it works beautifully! Thank You so much! You are very welcome @Petra Jane. Glad to have been of help. :)