Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
March 6, 20213 yr Is it possible to control what groups are viewable in terms of what populates the Memberlist ? For example - I have a lot of groups that are secondary and won't want them listed and looking at your Pie Chart, I'd want to configure that to say four out of the ten groups I have on my site. Thank you.
March 6, 20213 yr Author 17 minutes ago, DesertIslandFruits said: Is it possible to control what groups are viewable in terms of what populates the Memberlist ? For example - I have a lot of groups that are secondary and won't want them listed and looking at your Pie Chart, I'd want to configure that to say four out of the ten groups I have on my site. Thank you. Hello. No, it is not possible. All members, and therefore all groups, are listed in the current version of the app.
March 6, 20213 yr 24 minutes ago, Miss_B said: Hello. No, it is not possible. All members, and therefore all groups, are listed in the current version of the app. Ah damn. Ok, if you do make a change to this - please drop me a PM to let me know, you've got an instant sale then. Thank you. 🙂
March 9, 20213 yr Author On 3/6/2021 at 6:36 PM, DesertIslandFruits said: Ah damn. Ok, if you do make a change to this - please drop me a PM to let me know, you've got an instant sale then. Thank you. 🙂 I had missed this post until now. Do you mean that you do not want to list the secondary groups only at the PieChart stats?
March 10, 20213 yr On 3/9/2021 at 6:33 PM, Miss_B said: I had missed this post until now. Do you mean that you do not want to list the secondary groups only at the PieChart stats? Hi There, I would like to configure what groups can be seen on the PieChart. There are some group names for areas that are no concern to the members and are badges and such. So if we could have a dropdown that listed what groups to include in the member list, for example "duplicate accounts" group I would deselect so that is not shown. That way I control what groups are shown that list members and represented in the pie chart - so I can have all the groups if I choose, or just simply a couple of them. Thank you.
March 11, 20213 yr Author On 3/10/2021 at 10:06 PM, DesertIslandFruits said: Hi There, I would like to configure what groups can be seen on the PieChart. There are some group names for areas that are no concern to the members and are badges and such. So if we could have a dropdown that listed what groups to include in the member list, for example "duplicate accounts" group I would deselect so that is not shown. That way I control what groups are shown that list members and represented in the pie chart - so I can have all the groups if I choose, or just simply a couple of them. Thank you. I have added this on my to do list for the next version.
March 13, 20213 yr On 3/11/2021 at 10:44 PM, Miss_B said: I have added this on my to do list for the next version. Then you have an instant purchase - could I ask - please just drop a like on this when the new version is out so I know and I'll be buying. Thank you. Oh and while I am here, your Multiple Accounts Detector is working very well. It's caught nothing new as I was always due diligant and did it by hand on new members - but - it 100% matched what I had found. That application is going to save me a LOT of time over the course of a year as it sits away in the background. Great work on that on as well.
March 13, 20213 yr Author 5 hours ago, DesertIslandFruits said: Then you have an instant purchase - could I ask - please just drop a like on this when the new version is out so I know and I'll be buying. Thank you. Oh and while I am here, your Multiple Accounts Detector is working very well. It's caught nothing new as I was always due diligant and did it by hand on new members - but - it 100% matched what I had found. That application is going to save me a LOT of time over the course of a year as it sits away in the background. Great work on that on as well. Thank you for the kind words and I am glad to see that you are happy with the Multiple Accounts Detector app. The Memberlist app has been updated. I have added 3 new options. You exclude members from being displayed at either the memberlist or the sidebar blocks based on their primary and/or secondary groups. You can also exclude groups from being displayed at the Member Pie Chart Graph.
March 15, 20213 yr @Miss_B just brought, it looks like it installed and older version as I am not seeing the Excluded Groups option - is that turned on elsewhere please ?
March 15, 20213 yr Author 2 hours ago, DesertIslandFruits said: @Miss_B just brought, it looks like it installed and older version as I am not seeing the Excluded Groups option - is that turned on elsewhere please ? Thank you for your purchase. This is the old version. the newest version is waiting approval.
March 15, 20213 yr 2 hours ago, Miss_B said: Thank you for your purchase. This is the old version. the newest version is waiting approval. Ah ha ! Thank you - did not know that happened - well at least you know I brought it ! 🙂
March 16, 20213 yr Author 14 hours ago, DesertIslandFruits said: Ah ha ! Thank you - did not know that happened - well at least you know I brought it ! 🙂 The new version has been approved btw.
March 16, 20213 yr @Miss_B thank you for making the changes I asked for - perfect ! One issue I found - I don't think it's my settings. The Pie Chart is not showing group names. The Blue should be Members. The Red should be New Members.
March 16, 20213 yr Author 6 hours ago, DesertIslandFruits said: @Miss_B thank you for making the changes I asked for - perfect ! One issue I found - I don't think it's my settings. The Pie Chart is not showing group names. The Blue should be Members. The Red should be New Members. Can you try to reinstall it again? Maybe the language strings for that part were not added.
March 17, 20213 yr 22 hours ago, Miss_B said: Can you try to reinstall it again? Maybe the language strings for that part were not added. Sure, it did the same after an uninstall and a fresh install with no configuration changes.
March 18, 20213 yr Author That is strange. I will have a look at this on the weekend and get back to you.
March 21, 20213 yr Author The member chart makes use of groups members language strings, which are part of the Ips. Have you deleted those 2 language strings? You can harcore them as well if you want. At the members.php file inside the front folder of the app, find this code: $memberChart->addHeader(\IPS\Member::loggedIn()->language()->get('groups'), 'string' ); $memberChart->addHeader(\IPS\Member::loggedIn()->language()->get('members'), 'number' ); And replace it with this: $memberChart->addHeader( "Groups", 'string' ); $memberChart->addHeader( "Members", 'number' );
March 24, 20213 yr On 3/21/2021 at 8:21 PM, Miss_B said: The member chart makes use of groups members language strings, which are part of the Ips. Have you deleted those 2 language strings? You can harcore them as well if you want. At the members.php file inside the front folder of the app, find this code: $memberChart->addHeader(\IPS\Member::loggedIn()->language()->get('groups'), 'string' ); $memberChart->addHeader(\IPS\Member::loggedIn()->language()->get('members'), 'number' ); And replace it with this: $memberChart->addHeader( "Groups", 'string' ); $memberChart->addHeader( "Members", 'number' ); Nope - never touched the language strings in any shape or from. I'll try your patch to fix the problem. Thank you.
April 9, 20213 yr Author On 3/24/2021 at 8:38 AM, DesertIslandFruits said: Nope - never touched the language strings in any shape or from. I'll try your patch to fix the problem. Thank you. Were you able to solve this?
April 17, 20213 yr Author 9 hours ago, Umaar said: Hi, Is there a way to search, filter & sort the list by custom field? Thanks. ☺️ Hi, No, there is no such option in the current version.
May 28, 20213 yr So excited about this. I've installed it but the Memberlist won't show up in my menu. Says it won't work with my version which is 4.5.2. Help!