Jump to content

Adriano Faria

Clients
  • Posts

    31,855
  • Joined

  • Days Won

    475

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by Adriano Faria

  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.
  2. Sure... In a few days I'll release a new version. :thumbsup:
  3. Nope... you must choose a forum! :thumbsup:
  4. On ACP, in same where it always have been. Type news on ACP search and you
  5. PARSE ERROR is bad editing of PHP file. Take a look carefully at your edits.
  6. 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
  7. 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'] ); }
  8. Damn... you're right. I'll make some tests later.
  9. 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'] ); }
  10. Tks, guys. It's the first one, on line 568. The second one is uselless; it is the VIEW NEW POSTS, which isn't used on IPB3. For VIEW NEW CONTENT, it's the other file. But I'll add this to the ReadMe file! ;)
  11. File Name: (SOS30) Block Forums from 'View New Content' v1.1.0 File Submitter: Adriano Faria File Submitted: 08 Nov 2009 File Updated: 28 Jan 2010 File Category: Modifications By default, IP.Board shows the topics/posts from all forums when the user clicks in View New Content link. With this MOD, you give the user the option to select which forums he wants to see in VIEW NEW CONTENT search and TODAY'S ACTIVE CONTENT search. It's very nice to be used on forums with many categories/forums. For example: a user that uses ASP may not want to see the posts from PHP forum or maybe user didn't want to see topics from RSS forum, etc. Affected Files: admin\applications\forums\extensions\usercpForms.php admin\applications\forums\extensions\searchPlugin.php Change log: 1.0.2 => 1.1.0: Adjusts to run on IP.Board 3.0.5 and quick list of forums blocked 1.01 => 1.0.2: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT, ror those who didn't select any forum. 1.0.0 => 1.0.1: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT. Click here to download this file
  12. File Name: (SOS30) Auto-Topic Upon New Registration v1.0.0 File Submitter: Adriano Faria File Submitted: 06 Nov 2009 File Updated: 23 Apr 2010 File Category: Modifications This mod will create a topic for every new member registered on your board. Copyright Note: This mod is an upgrade of mod D23-Auto-Topic Upon New Registration v1.0 for IP.Board 2.3.X, by Dean & Logan, from D-Scripting. This upgrade was authorized by Logan Logan. Click here to download this file
  13. While it's not a built-in in IPB3, I'm updating a mod that I've made to IPB2. Must finish it today or tomorrow.
  14. Nope, you'll see the number on skin selector, down the page.
  15. There's no announcement. This mod uses the News Set-up feature from IPB... it only shows on every page.
  16. It uses a query to retrieve data from database! If you have a very large board with several users line, it's better not to use, of course! But that mod it's exacly a copy of same from IPB 2.3.X, only converted to IPB3. There's nothing different...
  17. Fixed the untranslated text on ReadMe.html!
  18. 1.0.1 released to fix an issue on group manage. Manual fix: on admin/applications/forums/sources/classes/post/classPostForms.php, change: $grupo = IPSText::cleanPermString( $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_grupos'] ); if ( $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_onoff'] AND $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_texto'] != '' AND in_array( $this->memberData['member_group_id'], array( $grupo ) ) AND $_POST['agree_to_terms'] != 1 AND !$this->getIsPreview() ) to: $grupo = $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_grupos']; if ( $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_onoff'] AND $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_texto'] != '' AND in_array( $this->memberData['member_group_id'], explode( ',', $grupo ) ) AND $_POST['agree_to_terms'] != 1 AND !$this->getIsPreview() )
  19. File Name: (SOS30) PM Notification on Reputation v1.0.1 File Submitter: Adriano Faria File Submitted: 18 Oct 2009 File Category: Modifications This mod will send a PM to the post author when he had a reputation on his posts. You can set which user groups will receive the PMs and in which forums this will happen. You can also set the type of reputation (positive, negative or both), author ID, title and message for the PM. Just like IPB, this mod is based on discretion, since it doesn't tell who gave you the point... it just shows in which post it was. File Affected: admin\sources\classes\class_reputation_cache.php Click here to download this file
  20. Where is it ? http://community.invisionpower.com/index.php?app=chat ? I got:
  21. I can only imagine that you've made something wrong. Got this running on my 3.0.4 online board. :huh:
  22. Bug fixed! ps: tks to Michael John on helping on that!
  23. IP.Board 3.0.4 ? I have to check it out... maybe something has changed on IP.Board 3.0.4!
  24. File updated to add other groups on profile minicard: ;)
  25. File Name: (SOS30) New Topic Rules v1.0.1 File Submitter: Adriano Faria File Submitted: 15 Sep 2009 File Updated: 25 Oct 2009 File Category: Modifications This MOD will create a specific rule for the forums you want, so users of specific groups, set by the administrator, must agree before they can create a new topic. Affected Files: admin/applications/forums/modules_admin/forums/forums.phpadmin/applications/forums/skin_cp/cp_skin_forums.php admin/applications/forums/sources/classes/post/classPostForms.php Click here to download this file
×
×
  • Create New...