Everything posted by Adriano Faria
-
Download: (SOS30) Upload Images v1.0.0
You can create the template manually. But I think it's better you open a ticket to IPS to see what's happening.
-
Download: (SOS30) Upload Images v1.0.0
Line 68: $this->output .= $this->registry->output->getTemplate( 'upload' )->form( $ext ); Your installation probably didn't create the proper template. Probably won't work with any app.
-
Download: (SOS30) Block Forums from 'View New Content' v1.1.0
Never used... but probably no. Only default IPB3 search was modified.
-
Download: (SOS31) Secondary Groups Indicator
Yes, it is. 14 replies + 1st post. The icons shows it is a hot topic. Anyway, I just added a new post to that topic using a user that has no secondary group, and no problem was detected. My topic open as usual. EDIT: try this http://www.invisionmodding.com/index.php?s=&showtopic=40064&view=findpost&p=182397 and let me know if it works.
-
Download: (SOS31) Secondary Groups Indicator
Tested now and not detected on 3.0.5:
-
Download: (SOS30) Block Forums from 'View New Content' v1.1.0
No, not yet. I'm finishing other APP right now. Sorry.
- IP.Chat help!
-
IP.Chat help!
Me too, on Beta 3. So I click and click on Chat tab and enter the chat. But always shows the message loading chat and nothing else.
-
IP.Chat help!
Yep... what about to edit other messages? Is it possible?
-
IP.Chat help!
Me neither.
-
IP.Chat help!
Brandon, what about this about ban stuff ?
-
IP.Chat help!
:thumbsup:
-
IP.Chat help!
Only accessed one time... after that:
-
IP.Chat help!
Yep, sorry:
-
IP.Chat help!
What's Account Key ? My user ID on this forum ?
-
IPB 3.1.0 features
I use [EN30] Ajax Fast Reply v1.0.4 and it works perfectly nice. See: [url=" Since reload the topic or have two ajax calls it's the same, I think IPS should at least implement this and give the admin the option to use or not.
-
Download: (SOS30) TOP 20 Reputation v1.1.1
If you read ReadMe, you'll see that you need to create manually the link on board index, 'cause there's no point hook there.
-
Download: (SOS30) Block Forums from 'View New Content' v1.1.0
Sure... In a few days I'll release a new version. :thumbsup:
-
Download: (SOS30) Global Latest News v1.0
Nope... you must choose a forum! :thumbsup:
-
Download: (SOS30) Global Latest News v1.0
On ACP, in same where it always have been. Type news on ACP search and you
-
Download: (SOS30) Global Latest News v1.0
PARSE ERROR is bad editing of PHP file. Take a look carefully at your edits.
-
Download: (SOS30) TOP 20 Reputation v1.1.1
File Name: (SOS30) TOP 20 Reputation v1.1.1 File Submitter: Adriano Faria File Submitted: 17 Nov 2009 File Updated: 14 Mar 2010 File Category: Hooks and Plugins This hook will create another statistic to your forum: Top 20 Reputation, where will list 20 users with more points. Now you can set: If you want to format user links with their group colorIf you want to show banned users on the list Click here to download this file
-
Download: (SOS30) Block Forums from 'View New Content' v1.1.0
New version released! Change log: 1.0.1 => 1.0.2: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT, for those who didn't select any forum. Manual fix: On admin\applications\core\modules_public\search\search.php, find: /* (SOS30) Block Forums from 'View New Content' v1.0.1 */ if( $this->request['search_app'] == 'forums' AND $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) ) { $this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] ); } Change to: /* (SOS30) Block Forums from 'View New Content' v1.0.2 */ if( $this->request['search_app'] == 'forums' AND $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) AND $this->memberData['blocked_forums'] != '' ) { $this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] ); }
-
Download: (SOS30) Block Forums from 'View New Content' v1.1.0
Damn... you're right. I'll make some tests later.
-
Download: (SOS30) Block Forums from 'View New Content' v1.1.0
New version released! Change log: 1.0.0 => 1.0.1: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT. Manual fix: Open admin\applications\core\modules_public\search\search.php and find: /* (SOS30) Block Forums from 'View New Content' v1.0.0 */ if( $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) ) { $this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] ); } Change to: /* (SOS30) Block Forums from 'View New Content' v1.0.1 */ if( $this->request['search_app'] == 'forums' AND $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) ) { $this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] ); }