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. Check with IPS if that setting applies to members too.
  2. That's probably why people didn't upload a screenshot. 🙂
  3. The only way is to UPLOAD A NEW VERSION: You don't need to provide a new .doc or .xls, etc. Just upload the screenshot and save it. Note: this is an old request, by the way.
  4. That's not a feature in Downloads. It will show this "blank" screenshot if the user didn't upload one.
  5. You can send an alert to new members:
  6. That’s the goal.
  7. Funny. Monday I couldn’t access this site using Edge (mobile) for a couple of hours. Cleared cache, cookies, reinstalled the app… nothing worked. Only Safari worked. It has nothing to do with IPS but it’s funny. Happened to me too.
  8. …and if you want to moderate specific member in specific forums: https://www.sosinvision.com.br/index.php?/file/163-moderate-content-per-forum/
  9. This file will be supported by me, from now on, on my board: https://www.sosinvision.com.br/index.php?/file/298-community-map/ You can redeem the marketplace purchase keys provided by IPS to keep getting updates and support for this application. Thank you.
  10. This file will be supported by me, from now on, on my board: https://www.sosinvision.com.br/index.php?/file/297-keyword-tooltips/ You can redeem the marketplace purchase keys provided by IPS to keep getting updates and support for this application. Thank you.
  11. Can you confirm if we will have access to some sort of content() method to manipulate the content itself? If you need some context, that would be one of them: https://invisioncommunity.com/files/file/7821-keyword-tooltipsimbacksale/ Thank you.
  12. https://www.sosinvision.com.br/index.php?/file/296-achievements-overview/
  13. I have a ton of resources using this. Show your code.
  14. Enable IN_DEV mode. It will appear.
  15. Not sure I follolw your question. Do you want to upload your own hook to the dev install? Make sure you make a copy and keep the dev folder of your app/plugin. You will need to work in your app/plugin in the future.
  16. I am in negotiations with CodingJungle and will probably support this file from now on. I would wait a bit to see if it confirms or not.
  17. If it is an app your developer is creating to use on your own site, there's no need to use Rest API. Use the script in your app.
  18. Create an application or a plugin. Go to dev center, tab Hooks and create a hook then you’ll have a file in applications/appkeyfolder/hooks or plugins/pluginkeyfolder/hooks. Add the script in this file.
  19. There's a plugin if you don't mind using 3rd-party: https://www.sosinvision.com.br/index.php?/file/294-guests-cant-view-profile-photo/
  20. 1: You need to have a local install of the board (with Apache PHP/MySQL, or a Wampserver, etc.). 2: upload the dev tools: 3: Enable the developer mode: 4: create a plugin with 2 code hooks in the classes I pointed above.
  21. - New topic: hook on \IPS\forums\Topic: public static function createFromForm( $values, \IPS\Node\Model $container = NULL, $sendNotification = TRUE ) { $item = parent::createFromForm( $values, $container, $sendNotification ); //do your stuff return $item; } - New post: hook on \IPS\forums\Topic\Post: public static function create( $item, $comment, $first=FALSE, $guestName=NULL, $incrementPostCount=NULL, $member=NULL, \IPS\DateTime $time=NULL, $ipAddress=NULL, $hiddenStatus=NULL, $anonymous=NULL ) { $reply = parent::create( $item, $comment, $first, $guestName, $incrementPostCount, $member, $time, $ipAddress, $hiddenStatus, $anonymous ); //do your stuff return $reply; }
×
×
  • Create New...