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. Fix: Change: $form->add( new \IPS\Helpers\Form\YesNo( 'clubs_enabled_setting', \IPS\Settings::i()->clubs, FALSE, array( 'togglesOn' => array( 'clubs_default_sort', 'clubs_header', 'clubs_locations', 'clubs_modperms', 'clubs_require_approval', 'form_header_club_display_settings', 'form_header_club_moderation', 'clubs_default_view', 'clubs_allow_view_change', 'club_nodes_in_apps', 'form_header_clubs_paid_settings', 'clubs_paid_on', '_allow_club_moderators' ) ) ) ); to: $form->add( new \IPS\Helpers\Form\YesNo( 'clubs_enabled_setting', \IPS\Settings::i()->clubs, FALSE, array( 'togglesOn' => array( 'clubs_default_sort', 'clubs_header', 'clubs_locations', 'clubs_modperms', 'clubs_require_approval', 'form_header_club_display_settings', 'form_header_club_moderation', 'clubs_default_view', 'clubs_allow_view_change', 'club_nodes_in_apps', 'form_header_clubs_paid_settings', 'clubs_paid_on', '_allow_club_moderators', 'club_max_cover' ) ) ) ); in applications / core / modules / admin / clubs settings.php::manage()
  2. That was never a feature nor is described as such. It would be in file description if it was.
  3. Yes, basically because this is a moderation tool and notifications are sent to moderators only, not to the member who was banned. It’s enough to read the notifications titles: … when another moderator does something… and not …when a moderator add ME in a ban list. Notifications appears and are sent only to moderators who can manage ban in topics. That’s how it was designed.
  4. There’s a Publish option in the Moderation Actions menu. It works if you need to publish it now.
  5. Hello, Polls are left behind when you uninstall an application. To make life easier, core_polls should have a "class" column or any way to identify the source, like core_follow has (follow_app and follow_area), that would make easier to list only polls from an specific app or even to delete them when uninstalling an app. Thanks.
  6. What's New in Version 1.2.0: Add ability to add polls to games New option per category Now you can place Extra Fields in groups, just like Profile Files All existing fields are place in a General group when upgrading to this version so you better check your extra fields after upgrade Removed the (per extra field) option to display it on movie sidebar or below description Added a setting to choose extra fields position: New tab beside Information tab Below movie/TV show description Add games covers in Other Media sections of the editor
  7. And that was I said twice for him: 🙂
  8. It may seem a dumb question but you have Commerce installed and enabled, right? If so, then enable integration with Commerce in Downloads settings (Paid Files). Then go to Members -> Groups -> edit your group -> Downloads and enable the option to charge for files. That’s all.
  9. That’s weird. That’s all you need to do. I just tested on my test site and works:
  10. You have to edit the groups you want to charge for files and enable it in Downloads tab. You have to enable paid files integration in Downloads settings.
  11. That would be the app we're working on. I added the Group extension but didn't use it yet so it is using its default "field", which is "example". Will send you a message. public function process( &$form, $group ) { $form->add( new \IPS\Helpers\Form\Text( 'example' ) ); }
  12. I will use IS NOT NULL instead, as NULL is used to save when the user removes the image. 👍
  13. What's New in Version 2.5.6: Fix: https://invisioncommunity.com/forums/topic/416549-delete-my-account/?do=findComment&comment= 2924453 Fix: https://invisioncommunity.com/forums/topic/416549-delete-my-account/?do=findComment&comment=2924484
  14. You mean in topics? It was added only in 4.7.0: It is used in other apps before that though.
  15. Go to Moderator CP -> Deleted Content and delete it permanently. You will be able to add it again now. This is to avoid duplicates.
  16. You said the error was on mine. Now is here. I recommend you to disable ALL 3rd-party resources and then enable one by one and test it. You will find one that's pretty outdated.
  17. I can't reproduce: Which PHP version? Post the content of the log. Also if there are other resources, disable them all and leave only this enable to try. ------------------ EDIT:
  18. If you have only one member and this member is ID = 1, you can run the following query to reset: ALTER TABLE core_members AUTO_INCREMENT = 2; You would need to make sure you have NO other data related to member IDs in your entire database, table per table, that’s why a reinstall is recommended. Use at your own risk and make a backup of your database before if you’re willing to try it.
  19. What's New in Version 1.1.1: New Features: Rework in Extra fields Now you can place your fields in Groups, just like Profile Files All existing fields are place in a General group when upgrading to this version Removed the (per extra field) option to display it on movie sidebar or below description Added a setting to choose extra fields position: New tab beside Information tab Below movie/TV show description Add movies covers in Other Media sections of the editor Fix: Script optimization to avoid conflict with Videos app (group cache)
  20. One more now: I don’t follow the user neither the forum:
  21. I’ll update new version tomorrow. 👍
  22. Sent you a fix via private message.
  23. Just remembered I changed the actions to Active Record and probably I’m calling the old way somewhere. Will check it out in a couple of hours.
×
×
  • Create New...