Jump to content

Clubs Enhancements

Featured Replies

  • Author
 

maybe because it needs to be approved?

Yes.

This plugin shows a new block in the Club Directory with pending clubs. Take a look there.

  • Replies 681
  • Views 63.4k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Adriano Faria
    Adriano Faria

    What's New in Version 1.0.3: New Feature: Allows club owners and Admins to delete club features.    

  • Adriano Faria
    Adriano Faria

    Due to personal reasons, had to transfer this file to another dev. @InvisionHQ will support this file from now on. Thank you.

  • I may have mentioned this before, but the ability to search for clubs would be very handy!

Posted Images

 

Yes.

This plugin shows a new block in the Club Directory with pending clubs. Take a look there.

Yes I see that but there is no approval link?

  • Author
 

Yes I see that but there is no approval link?

That's because you don't have permission to. See:

 

Can I manually add a moderator?

  • Author
 

Can I manually add a moderator?

This not related to this plugin, but here it goes:

vgwqUC1.png

  • Author

What's New in Version 1.0.16:

New features:

  • Add ability to convert a club feature into a forum/category.
  • Add ability to ADMINS ban/unban members from the whole clubs.
    • A banned member won't be able to access any club page, including its content (topics, files, images, etc.).
    • IMPORTANT: Club items will continue to appear in Activity Streams, profiles, searchs, etc. The restriction will happen only when the member tries to read them.
  • Add a style to the post container template (clubEnh_postContainer) so you can use it like you want in your custom.css.

Compatibility:

  • Member Maps by @Martin A.
  • Club Sponsors Page by @Fosters
  • With any other resource that adds tabs to the clubs

Edited by Adriano Faria

 

Add a style to the post container template (clubEnh_postContainer) so you can use it like you want in your custom.css.

Thank you.

I moved a locked forum into a club and now I can't unlock it. From what I've read in this thread, I'm guessing I should have unlocked the forum before moving it and losing the setting. Too late for that now though. Do I need to unlock this directly from the DB now?

Edited by Hezeber

  • Author

No. It moves what you requested to move, locked (?) or not. Anyway, go to MANAGE FEATURES and convert it again to a forum. It’s a new feature in this version. 

Is there club notification settings like email when a new person is added?

  • Author

No.

 

Is there club notification settings like email when a new person is added?

There are some notification settings you can turn on, yes. Both for yourself or new accounts. 

59cb6af9c7ec1_Bildschirmfoto2017-09-27um11_09_31.thumb.png.9c9a1c7f78ae8e686b8d01fa41b1d29f.png

 

Edited by opentype

 I'm getting EX0 errors that name the plugin as a possible source. The errors occur when I access a page with a database. Sample system log:

Error: Call to undefined method IPS\cms\Categories1::club() (0)
#0 /var/www/html/rDirectory/applications/cms/modules/front/database/category.php(82): IPS\Node\hook714::loadAndCheckPerms(54, 'read')
#1 /var/www/html/rDirectory/applications/cms/modules/front/database/category.php(40): IPS\cms\modules\front\database\_category->view()
#2 /var/www/html/rDirectory/system/Dispatcher/Controller.php(96): IPS\cms\modules\front\database\_category->manage()
#3 /var/www/html/rDirectory/applications/cms/sources/Databases/Dispatcher.php(305): IPS\Dispatcher\_Controller->execute()
#4 /var/www/html/rDirectory/applications/cms/widgets/Database.php(123): IPS\cms\Databases\_Dispatcher->run()
#5 /var/www/html/rDirectory/applications/cms/sources/Pages/Page.php(1241): IPS\cms\widgets\_Database->render()
#6 /var/www/html/rDirectory/applications/cms/sources/Pages/Page.php(2161): IPS\cms\Pages\_Page->getWidgets()
#7 /var/www/html/rDirectory/applications/cms/modules/front/pages/page.php(73): IPS\cms\Pages\_Page->output()
#8 /var/www/html/rDirectory/applications/cms/modules/front/pages/page.php(43): IPS\cms\modules\front\pages\_page->view()
#9 /var/www/html/rDirectory/system/Dispatcher/Controller.php(96): IPS\cms\modules\front\pages\_page->manage()
#10 /var/www/html/rDirectory/applications/cms/modules/front/pages/page.php(33): IPS\Dispatcher\_Controller->execute()
#11 /var/www/html/rDirectory/system/Dispatcher/Dispatcher.php(146): IPS\cms\modules\front\pages\_page->execute()
#12 /var/www/html/rDirectory/index.php(12): IPS\_Dispatcher->run()
#13 {main}

Backtrace
#0 /var/www/html/rDirectory/init.php(523): IPS\_Log::log('Error: Call to ...', 'uncaught_except...')
#1 [internal function]: IPS\IPS::exceptionHandler(Object(Error))
#2 {main}

Disabling the plugin stops the error (after clearing cache). CiC account if it matters. So far as I am aware this is only since the latest update. I didn't notice nor did anyone report an error previously. 

  • Author

Ok. I’ll take a look. 

  • Author

What's New in Version 1.0.16.1:

  • Fix error when you go to category of a app that doesn't use Clubs, like Pages.

@bradl

 

What's New in Version 1.0.16.1:

  • Fix error when you go to category of a app that doesn't use Clubs, like Pages.

@bradl

Came here to report that the last version broke my commerce store, but this update fixed that too. Thanks for the prompt fix!

I got this error after updating:

Duplicate column name 'banned_from_clubs'

Latest public version of IPS

I reinstalled it over again and seems fine now?

  • Author
 

I got this error after updating:

Duplicate column name 'banned_from_clubs'

Latest public version of IPS

 

 

I reinstalled it over again and seems fine now?

The column creation appears only in verison 1.0.16:

/**
 * 1.0.16 Upgrade Code
 */
class ips_plugins_setup_upg_10019
{
	/**
	 * ...
	 *
	 * @return	array	If returns TRUE, upgrader will proceed to next step. If it returns any other value, it will set this as the value of the 'extra' GET parameter and rerun this step (useful for loops)
	 */
	public function step1()
	{
		if( !\IPS\Db::i()->checkForColumn( 'core_members', 'banned_from_clubs' ) )
		{
			\IPS\Db::i()->addColumn( 'core_members', array(
				'name'			=> 'banned_from_clubs',
				'type'			=> 'TINYINT',
				'length'		=> 1,
				'allow_null'		=> false,
				'default'		=> '0',
				'comment'		=> "Determines if the member is banned from the WHOLE Clubs module.",
				'unsigned'		=> true,
			) );
		}	

		return TRUE;
	}
	
	// You can create as many additional methods (step2, step3, etc.) as is necessary.
	// Each step will be executed in a new HTTP request
}

So there's absolutely no way to show duplicate column, unless something happened when you tried to update and the column was created and then you tried again.

Anyway, here goes the live update from 1.0.15.1 to 1.0.16 (column is created here) to 1.0.16.1:

No problem here.

I reinstalled it, and no errors. So I guess it's working fine.

  • Author

File reuploaded due to a marketplace error.

No change made.

Any ideas about REST API endpoints?
Create/Edit/Delete clubs, add memeber etc.

  • Author
 

Any ideas about REST API endpoints?
Create/Edit/Delete clubs, add memeber etc.

In the plugin? No! This is a Core stuff. IPS must add it to the Core.

Recently Browsing 0

  • No registered users viewing this page.