Jump to content

teraßyte

Clients
  • Posts

    33,811
  • Joined

  • Last visited

  • Days Won

    55

 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 teraßyte

  1. If he's not going to renew another developer has to redo the plugin from scratch. It's not possible to just update someone else's modifications and re-submit it. It seems an easy enough modification to make though. If you send me a PM we can talk about it.
  2. One of your database tables (core_edit_history) is crashed and needs to be repaired. Possibly you might have even more tables in the same situation. You can try repairing the tables yourself from phpMyAdmin (or a similar tool) or contact your hosting about it if you don't know how to do it.
  3. Nvm.
  4. New 1.1.1 version is now available:
  5. This is the support topic for this modification:
  6. I made the plugin after I received a custom request. It's just been approved by IPS and it's now available in the Marketplace too:
  7. Uploaded a new 1.1.0 version currently pending IPS approval. Here's the changelog:
  8. You can just click the "+ Create Button" top-right on the themes page to add a new default one.
  9. You can safely ignore that kind of log. It's mainly for developers. They're going to remove it in the next version (or the one after).
  10. 777 is what IPS suggests, but depending on your server's setup the required permissions might be different. As long as your tasks are running properly you're good.
  11. Yes the task.php file needs to be 777 in order to run properly. And the key at the end (set of numbers and letters) is a parameter that gets passed to the backend code when it runs. Leave everything as is and you're good. 👍
  12. @Ryan Ashbrook Here's hoping. You updated the Requirements Checker 3 times today and I received 12 separate notifications (4 each time). 😅
  13. Currently using the Carousel module there is an option to start a slideshow using data-ipsCarousel-slideshow but the timer itself is hardcoded to 4 seconds in the javascript file \dev\js\framework\common\ui\ips.ui.carousel.js: var slideshowTimeout = 4000; Since this is a module there's no way to create a mixin for it as it's only for controllers. (Or is it possible to use a mixin on a module? Even if it is, because of the place the timer is in, there's no way to override its value though.) Can you add support for overriding the timer with a new option like this one? data-ipsCarousel-timer='3000'
  14. Posted in the wrong forum? It's in marketplace support... 😋
  15. In theory it is possible, but I'm not seeing any kind of API on the site. Only applications/extensions you can install on the phone or browser. 🤔
  16. There is a Providers list where you can hire 3rd party developers for custom work: https://invisioncommunity.com/third-party/providers/ I'm on that list too. 🙂
  17. It might be an issue with your custom theme. Does it happen also if you switch to the default IPS theme?
  18. Adding a table check (or removing that specific code) should be a quick thing to fix but the uninstaller might also run other code too. If the author is not around anymore your can try hiring someone else to check it for you since IPS can't help with 3rd part code: https://invisioncommunity.com/third-party/providers/ I'm also on that list. Send me a PM with some more details about it if you want.
  19. There is a setting to truncate the text so they have to visit the site to read the full reply, but there's no setting to completely remove it. You could edit the email template to remove the text, but it might impact other notifications/areas as well.
  20. For what purpose exactly? Unread only for yourself, other users, or everyone? If you just want to mark the topic as unread for others a possible solution is to bump it:
  21. I'm having the issue on this site. When someone uploads a new version for a file I get duplicate email notifications, and in some cases I receive even 3 notifications. For example this file was recently updated today: And I received 2 email notifications:
  22. Support for a prefix was added in the template \applications\core\dev\html\global\forms\number.phtml but the code to display the prefix is checking the wrong variable on line 5: {{if \is_string( $suffix )}} {$prefix|raw} {{endif}} The IF should check $prefix rather than $suffix: {{if \is_string( $prefix )}} {$prefix|raw} {{endif}}
  23. It's related to a bug in how PHP 8.1 handles timezones. The same bug is also causing the issue with the constant license expire emails some people are receiving:
  24. No. that works only in JS/PHP. For HTML use this instead: <!-- THE HTML YOU WANT TO HIDE HERE -->
×
×
  • Create New...