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. Let me know. 👍
  2. The carousel uses 100% IPS CSS classes, so should be able to reproduce it on IPS apps. You said you can in Gallery. On Gallery?
  3. Following? There is already a follow member feature for profile. This plugin will simply add another way to communicate with the member which is send an email, in addition to the existing private message.
  4. New version will add a moderator permission to manage questions & answers: It will also introduce 2 new type of quizzes. One them is MULTIPLE RIGHT ANSWERS quiz: - Playing:
  5. I'm not sure I understand what you mean. What do you want exactly? Only the author to manage? If so, open applications/quizzes/sources/Quiz/Quiz.php and find: /** * Can manage questions & answers? * * @param \IPS\Member\NULL $member The member (NULL for currently logged in member) * @return bool */ public function canManageQuestions( $member=NULL ) { $member = $member ?: \IPS\Member::loggedIn(); if ( !$member->member_id OR $this->locked() ) { return FALSE; } return ( $member->member_id == $this->author()->member_id ) or parent::canEdit( $member ); } Change to: /** * Can manage questions & answers? * * @param \IPS\Member\NULL $member The member (NULL for currently logged in member) * @return bool */ public function canManageQuestions( $member=NULL ) { $member = $member ?: \IPS\Member::loggedIn(); if ( !$member->member_id OR $this->locked() ) { return FALSE; } return ( $member->member_id == $this->author()->member_id ); }
  6. Correcting, now that I see the code: only the author and those who can edit the quiz can manage questions and answers. You can because you are a unrestricted moderator.
  7. Sure. I’ll add a moderator permission in next version. 👍
  8. Only the quiz author can manage Questions & Answers.
  9. About This File This plugin will give members the ability to follow specific user content from other members. This will make the user to receive only notifications of content of interest.
  10. I can add a new field in the note form (and a new module to add its types: warning, accolade, etc.) that will act like a filter to separate notes in the notes listing but it won’t a “real” category feature. That would require a total rewrite of this resource and it wouldn’t cost only $15 for sure.
  11. I’ll consider the draft posting in a future version. 👍
  12. No, not a feature. I suggest you to create it hidden then only moderators will be able to view it.
  13. @Luke Hickton Open the ACP -> Customization -> click in Edit HTML & CSS of your theme -> Find Quizzes in the app list in Templates tab -> front -> view -> resultQuiz -> Find: <td>{lang="{$feedbackText}"}</td> Change to: <td style='white-space:normal;'>{lang="{$feedbackText}"}</td> Find: <span class="ipsDataItem_generic">{lang="{$feedbackText}"}</span> Change to: <span class="ipsDataItem_generic" style='white-space:normal;'>{lang="{$feedbackText}"}</span> Save the template. That will go from: to: As this isn't enough to release a new version (isn't crashing the app, etc.), it will be fixed in the next one. This is a temporary fix.
  14. I’ll provide a template edit (temporary fix) tomorrow in the morning.
  15. What's New in Version 1.2.4: New Feature: Added ability to follow club and its features Due to not require membership, only Public and ReadOnly clubs will be allowed to be automatically followed by new members Fix: Fix a typo on a language bit
  16. ...which is abandoned. Be careful.
  17. Admin? It’s to be used In front end.
  18. Not exactly what you’re requesting but this gives more visibility to tags:
  19. What's New in Version 1.3.4: Fix issue in generated topic (post where winners are displayed) Delete unused templates
  20. Again, the issue happens only in another resource so ask to the other dev the fix. It’s not an issue in my plugin.
  21. That has happened before and It is an issue in the Trophies app: You better try with Fosters as he said it was fixed.
  22. Sent you a version via PM. Please test and reply. 👍
  23. Nice... Will update the file soon. 🙂
  24. Was it just a test? It's fixed but as it is a post content, once is done, there's no way to redo. If it was just a test, I'll release a new version now. Otherwise, will have to waste some time to make a routine to rebuild the post.
  25. That's pretty weird. 🤷‍♂️ On it.
×
×
  • Create New...