Jump to content

Adriano Faria

Clients
  • Posts

    31,865
  • 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. Number of views should be visible in the Quiz Information area in quiz view, if I'm not mistaken. If it's not there, I'll add it. Nope, but I can do it in a future version. Crowdfunding has this.
  2. Yes. You can either: change the API to upload in the app settings let the app capture the screenshot and then upload manually an image in link view -> mod actions menu
  3. Easy to guess. No one get yet? 😂
  4. Nope. The stars comes from the Review system on Downloads. You can probably try a plugin to "hide" the stars or even edit the templates to remove them.
  5. Don’t count on this. My board is for support only. 👍
  6. Not that good with CSS, sorry. It would be easier to edit the plugin template and remove it.
  7. 1: It is like any other app out there. Only Forums is different. Not even the other IPS apps are like Forums (there are tons of requests for Downloads, for example). I’ll take a look in a future version. 2: If it’s happening then it’s a bug. I’ll provide a fix in this topic when I’m able to. I won’t release a new version before 4.5. 3: Topic is created only in quiz creation. I’ll add in a future version. 4: No. You can have the 3 types of quizzes in same category. Edit your category and enable the 3 types on it: User will choose which one when creating the quiz:
  8. No plans to add such feature, sorry.
  9. What's New in Version 1.0.3: Script optimization to fix issue reported
  10. No, since 1.0.0. It happens only when different users are following same person. Working a fix right now.
  11. @SJ77 nailed it down.... It's really my fault. Not exactly deleting the record but replacing. I'll provide a fix as soon as I can. 👍
  12. Not here. Works fine. I am user ID 1 and I follow user ID 2 then vice-versa:
  13. The time (20 minutes) seems to be a thing here... this plugin doesn't has a task to run from time to time, so most likely something else is deleting the record. I'm checking anyway.
  14. I'll try to debug, while I wait for the other 3 purchasers reply on this. I really can't reproduce this in my 2 boards.
  15. Not that I’m aware of. —————————— @Maxxius @AlexWright @PrettyPixels Can any of you reproduce this in your board?
  16. The only DELETE instruction is when someone stop following the member: Other than that, it doesn't delete records from the plugin table. When you change the follow, it updates the field with a * (all content) of specific and the content will be listed in next column, as shown in your screenshot. Make sure you haven't another resource deleting "follows".
  17. Argentina? Not sure what you're seeing there. All requests are made to https://www.googleapis.com/books/v1/volumes. The only setting for language is this: https://invisioncommunity.com/forums/topic/456245-books/?do=findComment&comment=2815448 EDIT: taking a look on my online board, I see in same tab: All requests are made to https://www.googleapis.com/books/v1/volumes and then I print the results. Links come from Google Books API. I don't create them manually. True. Fixed. Just updated the file to fix the subtitle field.
  18. There’s an option in the profile field to make it appear in the registration screen.
  19. What's New in Version 1.0.1: New features: New setting to control the ISBN format: 13 digits, 10 digits or both New setting to display a BUY THIS BOOK button in the book view 13 digits ISBN format will add a link to Barnes & Noble store 10 digits ISBN format will add a link to Amazon store Per member options in Account Settings to control Amazon settings Store URL: member can choose the URL to the store of their country Affiliate Program ID: this will be added in the BUY THIS BOOK button so the member can monetize with their submissions in case someone buys the book Fix: Book subtitle not saving
  20. Quick example, obviously not tested: /** * Build Registration Form * * @return \IPS\Helpers\Form */ public static function buildRegistrationForm( $postBeforeRegister = NULL ) { $form = parent::buildRegistrationForm( $postBeforeRegister ); $form->add( new \IPS\Helpers\Form\Text( 'field_name', NULL, TRUE ), 'password_confirm' ); return $form; } /** * Create Member * * @param array $values Values from form * @param array $profileFields Profile field values from registration * @param array|NULL $postBeforeRegister The row from core_post_before_registering if applicable * @return \IPS\Member */ public static function _createMember( $values, $profileFields, $postBeforeRegister = NULL ) { $member = parent::_createMember( $values, $profileFields, $postBeforeRegister ); $member->field_name = $values['field_name']; $member->save(); return $member; }
  21. Go to any member profile on ACP and click in the yellow box: then Recount and choose:
  22. The user receives a notification linking to the raffle. I really don’t see any sense in send a notification and then a message. That would be like a spam! I could replace but then the if someone disables the messenger, no message will be delivered. So no, user can easily click in the link of the notification or email and see what he earned.
  23. New topic and replies, just like happens today. Records is the content item of your database in Pages. You can change this in the DB settings.
  24. Yes, by default, it remains as it is today: all content is followed. If the user wants, then needs to uncheck and choose what to follow. 👍
×
×
  • Create New...