Jump to content

Nathan Explosion

Clients
  • Posts

    7,053
  • 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. v1.1.0 is now pending approval NEW plugin has been converted to an application no longer limited to just the Forums application, should now be extended out to all applications tested & compatible with IPS 4.7 CHANGES none FIXES none
  2. I'm guessing that what you are asking for is how to find out what the ID attribute is off an item in the menu in IPS. Simple - right click the item you want to find out about, and select 'Inspect' and then view the resulting HTML in the console:
  3. I reckon there is something else hooking in that results in a failure in a check I added - should have taken into account possibility of this, so modifying the check. If you have FTP access to your site, download the following file and send it to me via PM and I'll patch it for you. applications\nehidecontent\sources\ProcessStuff.php
  4. A field that would... need to be updated with or without any actually changes required to the resource. add additional approvals for IPS to perform ultimately be ignored, with questions still being asked in support topics like "does this support IPS 4.x?" or "does this support PHP 8.x?"
  5. Here's a plugin that removes the need for the template edit. (NE) Start New Topic - specific forum 1.0.0.xml
  6. Template edit. forums -> front -> forums -> index Find: <a class="ipsButton ipsButton_medium ipsButton_important" href="{url="app=forums&module=forums&controller=forums&do=add" seoTemplate="topic_non_forum_add_button"}" data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="select_forum"}'>{lang="start_new_topic"}</a> Add the following after &do=add (changing 1 to the ID of the forum you want to use): &id=1 And remove the following: data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="select_forum"}' Result: <a class="ipsButton ipsButton_medium ipsButton_important" href="{url="app=forums&module=forums&controller=forums&do=add&id=1" seoTemplate="topic_non_forum_add_button"}">{lang="start_new_topic"}</a>
  7. 8.1 isn't supported, so that isn't a good test. 7.4.x or 8.0.x If they still return all ok, then you need to start looking at your server logs.
  8. But that is the version where things are working for you. Switch to 7.4.x and run the checker again.
  9. https://invisioncommunity.com/forums/topic/467475-upload-error/?do=findComment&comment=2893455
  10. v4.0.2 is currently pending approval NEW Added ability to display 'skeleton text' instead of, or aswell as, textual content when hiding all content FIXES Fixed issue where HTML content was included in the meta 'description' & 'og:description', resulting in it being printed as text at the top of the page. CHANGES None
  11. No, that would be outside the scope of what this application is intended for.
  12. Possibly push notifications to Android devices.
  13. @Marc Stridgen Just take a look at any long topic on here: The order is based on member_id, not the number of posts. IPS\Content\Statistics - the topPosters function... When it gets to this point, $contributors is in the right order. $return = array(); foreach( new \IPS\Patterns\ActiveRecordIterator( \IPS\Db::i()->select( '*', 'core_members', array( \IPS\Db::i()->in( 'member_id', $contributors ) ) ), 'IPS\Member' ) as $member ) { $return[] = array( 'member' => $member, 'count' => $counts[ $member->member_id ] ); } The above ends up returning an array in member_id order.
  14. They've disabled messenger? They've hit the limits imposed on them by the admin?
  15. You'll need to contact the developer of that application - if it is this one below, then they do support elsewhere:
  16. v1.3.1 is currently pending approval NEW Tested & compatible with IPS 4.7 CHANGES Changed default value of 'Facebook code version' inline with current version display in Facebook's configuration code Added tabs to settings to separate items FIXES None
  17. Currently, once a CKEditor plugin is installed then a new version of the same plugin cannot be installed. The only options available to handle this one are to: Upload the new versions code via FTP (not possible for Cloud customers) Reset the Editor to default configuration, blowing away ALL plugins added to the Editor as well as any custom buttons added.
  18. Same issue with this one too. n1ed-editor_2022.2.0.zip contains "plugins" folder, which then contains "N1ED-editor" which then contains the plugin.js file. It (the zip file) also contains a theme, and instructions on further configuration, and with that...
  19. For reference to others who might read this topic...the code that uploads the zip in the ACP doesn't do any kind of "is this compatible with this version?" checks. If you get the error above, check the contents of the zip - the plugin.js file should always be in the first folder witin the zip. If it's any deeper than that, then you get the error above. If it's not compatible/supported, and definitely doesn't work in the version of CKEditor used by IPS, then your Editor will most likely just break.
×
×
  • Create New...