Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted August 3, 20177 yr Hello, Please add settings in CP for the forum Administration could limit the number of Leaders and Moderators in the clubs.Today, all club members can become admins and/or moderators. This is not acceptable. We don't need trolls. This is an additional work load on the Administration, which is to enforce the rules.
August 4, 20177 yr Hi Alex are you maybe familiar with the setting where I can limit number of clubs one member can have? I know I saw it somewhere but I simply cant find it! Any help is appriciated! Cheers, Igor
August 4, 20177 yr 5 minutes ago, C4D Cafe said: are you maybe familiar with the setting where I can limit number of clubs one member can have? I know I saw it somewhere but I simply cant find it! It's part of my plugin: https://invisioncommunity.com/files/file/8604-clubs-enhancements/
August 4, 20177 yr Just now, Adriano Faria said: It's part of my plugin: https://invisioncommunity.com/files/file/8604-clubs-enhancements/ Which I own, thank you...I know I saw it somewhere but I totally forgot where that setting was! Thanks a lot!
August 4, 20177 yr Author 3 minutes ago, C4D Cafe said: are you maybe familiar with the setting where I can limit number of clubs one member can have? I know I saw it somewhere but I simply cant find it! Any help is appriciated! You can limit the number of leaders and moderators in the file view.php the path /applications/core/modules/front/clubs
August 4, 20177 yr Author Just now, C4D Cafe said: Guys, is there a way to convert or transfer Blog's to Club's Blog's? I'm not working with blogs. This topic is not about that.
August 4, 20177 yr Author My fast-fix in view.php for use-case for my community: /** * Make a member a leader * * @return void */ /*...cut...*/ /* MAX Leaders 2 */ $leaders = \IPS\Db::i()->select( 'member_id', 'core_clubs_memberships', array( 'club_id=? AND status=?', $this->club->id, \IPS\Member\Club::STATUS_LEADER)); if(count($leaders) > 2){ \IPS\Output::i()->error( 'no_module_permission', 'LEADERS/LIMIT', 403, '' ); } /*...cut...*/ /** * Make a member a moderator * * @return void */ /*...cut...*/ /* MAX Moderators 4 */ $moderators = \IPS\Db::i()->select( 'member_id', 'core_clubs_memberships', array( 'club_id=? AND status=?', $this->club->id, \IPS\Member\Club::STATUS_MODERATOR)); if(count($moderators) > 4){ \IPS\Output::i()->error( 'no_module_permission', 'MODERATORS/LIMIT', 403, '' ); } I hope that in the next version, there will be a setting for Administrators in Admin panel where we can limit the number of leaders and moderators for the club through the UI. PS: If thinking logically, Everyone understands that if 1000 users in the club, 500 can be leaders, and 500 moderators. It's a mess.
August 4, 20177 yr 13 minutes ago, AlexKERNEL said: I'm not working with blogs. This topic is not about that. Sry, my bad!
Archived
This topic is now archived and is closed to further replies.