Jump to content

Nathan Explosion

Clients
  • Posts

    7,010
  • Joined

  • Days Won

    128

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Forums

Events

Store

Gallery

Everything posted by Nathan Explosion

  1. @Marc Stridgen It's early morning so happy to be wrong but I think the logic on the check for that section may be flawed if you are viewing your own topic and you are a Moderator. Here's the code: {{if $topic->canSolve() AND ! $topic->isSolved() AND $topic->isNotModeratorButCanSolve()}} <div class='cContentMessage cContentMessage_color ipsMessage_success ipsMargin_vertical' data-controller='forums.front.topic.solved'> <h3 class='cContentMessage__header'>{lang="solved_did_it_tho_title" sprintf="\IPS\Member::loggedIn()->name"}</h3> <div class='ipsPadding'> {lang="solved_did_it_tho_desc"} {{if member.members_bitoptions['no_solved_reenage']}} <div class='ipsMargin_top'> <a href="#" data-action="mailSolvedReminders" class="ipsButton ipsButton_verySmall"><i class="fa fa-envelope"></i>&nbsp; {lang="solved_reengage_on"}</a> </div> {{endif}} </div> </div> {{endif}} If checks 3 things canSolve = true isSolved = false isNotModeratorButCanSolve = true If you are a moderator and have created a topic that can be solved, that message won't display to you. See attached video. My question is... - Questions - YNWA.TV (Test site) — Mozilla Firefox 2023-03-29 09-50-32.mp4
  2. Not looked but I would expect that a hook into save in \IPS\forums\Forum will be needed to allow you to grab your fields to allow you to then insert them to your table, and to also unset them from the values so that it doesn't attempt to save in forums_forum.
  3. If you are intending to release the resource on the MP then you shouldn't think about doing this and instead should... To then retrieve those settings when loading a forum, you'd need to hook into constructLoadQuery in \IPS\forums\Forum and do something like this: protected static function constructLoadQuery( $id, $idField, $extraWhereClause ){ $parent = parent::constructLoadQuery($id, $idField, $extraWhereClause); $parent->join('your_table', 'your_table.forumid=forums_forum.id'); return $parent; }
  4. v2.2.0 is now pending approval NEW Added support for Adriano Faria's Security Question Password Mask plugin
  5. Moving support for this away from PM (as I now have mine disabled) to a support topic.
  6. v2.2.0 is currently pending approval NEW Added a new setting to the 'Email validation' functionality which will allow suppression of the requirement for a validation code if a Guest has previously validated their email address within the last x amount of time (X is set to 0 at the time of installation, requiring a validation code each time) Added support for Adriano Faria's "Contact Us" application Submissions made using that application will now be checked against the services configured in this application The 'Email validation' functionality is also available for Guest submissions.
  7. As you don't indicate how you recovered, I am going to assume that you just uploaded the PHP files from the prior version. You need to upload everything, because if you leave a specific .json file from the newer version in place on a restored older version then you get that message. How do I know? Because I added a new version to the applications\core\data\versions.json file on an existing instalation of 4.7.9 beta 1 And here is the result: Recover ALL the files, not just the PHP files.
  8. Moving support for this away from PM (as I now have mine disabled) to a support topic. v2.1.0 is currently pending approval NEW Added support for @Adriano Faria's Topic Password Protection application
  9. No - the files are uploaded as attachments via the Editor in which you are located. For example: in a forum topic/post, the files are uploaded via the editor - and therefore stored in the location for attachments. if this was a completely standalone application, then I could do the above as per Adriano's application - but it isn't. I will keep it in mind for a future version, but zero promises.
  10. Yup, just checked the code...line 780 $tempData['blog']['video']['limit'] = $values[static::$videnLangPrefix . 'blog_limit']; If you're on Cloud, let me know and I'll release a bug fix.
  11. Actually, that'll be an easy fix without even looking at the code. If you are self-hosted and have access via FTP, edit the following file: applications\neappmediarecording\modules\admin\recorder\nmrsettings.php Search for viden and replace it with video - simple typo, and likely in the Blogs section of the processing of the form. Wouldn't have picked this up previously as I don't use Blogs. Thanks for the purchase.
  12. OK - I'll look into it over the weekend.
  13. This one? If so, simply change the domain element of the link (plus a little modification to https://) http://cpica.invisionconnect.com/uploads/gallery/category_35/gallery_1_35_12233.jpg to https://cpica.ca/uploads/gallery/category_35/gallery_1_35_12233.jpg
  14. Because the developer doesn't currently hold an active license.
  15. The above would be relevant for logging in - but the user isn't talking about that, they are talking about discouraging the use of the email address as the display name. Go to the following area in the ACP (Customization -> (Localization) Languages) and click 'Add phrase' and create an entry with username_desc as the key, and put your content into the default value field. Result: Where to go in the ACP:
  16. v3.0.0 is currently pending approval NEW Added functionality to provide the ability to reorder pinned topics in forums. The feature is available to users with the "Can reorder pinned topics?" moderator permission The order of topics is specific to each forum - if using the "Fluid" view of forums, this will have its own pinned topic order unrelated to the configured order of topics contained within sub-forums. Added a "Default state" setting which controls whether the pinned topics section will be expanded or collapsed by default. CHANGES Minor language string updates
  17. Reproducible with: https://www.theadminzone.com Not reproducible with: https://www.theadminzone.com/tags/forum/
  18. Reproduced on Firefox and Chrome...no plugins in the browser: It's definitely being submitted to check if it needs to be embedded, and it appears to be detected as an image. Here's the request: And here's the response: Not reproducible using https://www.ynwa.tv though (image = false)
  19. Or just edit your theme's settings, go to the front end colours and set the Mentions entry to the colour of your choice (this now works, it didn't previously)
×
×
  • Create New...