Jump to content

Ryan Ashbrook

Invision Community Team
  • Posts

    12,727
  • Joined

  • Last visited

  • Days Won

    13

 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 Ryan Ashbrook

  1. That's fair - however I should note that the handling of banned members has not changed between the two versions.
  2. I'd recommend using the demo instead: https://invisioncommunity.com/demo
  3. When you use the insert output plugin, then file is then included. As a result, it has access to the IPS4 Framework, so you could do: <?php echo \IPS\Member::loggedIn()->name;
  4. Yes, the purchases are deleted. Transactions are not, however, which would be the appropriate way to track financial history. Income reporting in the AdminCP, for instance, uses Transaction data, not purchase data.
  5. You can just create a brand new theme and it will be default with no changes - just select Manual Mode when creating. 🙂
  6. Indeed - I reached out to support and clarified. What you described is a bug, and I'm investigating.
  7. I found it, thanks. 🙂
  8. Can you please submit a ticket? I'd like to take a look at this closer.
  9. You don't need the if statement there, as it will almost never be set (it means it's looking for a "url" parameter in the current URL). This should work: <li><a href='https://translate.google.com/translate?sl=en&tl=ru&u={expression="request.url()"}'>русский</a></li>
  10. {expression="\IPS\cms\Pages\Page::$currentPage->_title"} Or {expression="\IPS\cms\Pages\Page::$currentPage->getHtmlTitle()"}
  11. Posts are rebuilt in the background after the conversion has completed.
  12. Yes, go to your Admin CP > Members > Groups - click the Padlock (titled "Permissions") next to a group, and you can set permissions across the whole suite. Repeat for each group.
  13. Are you certain it's Redis? What is the error you are seeing? If you've completely removed or renamed constants.php, then it should no longer try and connect to Redis.
  14. Switching online visibility isn't logged to the member history. If you look at the devices used by the user, though, it will show you which ones are logged in anonymously.
  15. Unfortunately, not at this time - member follows are handled a bit differently from content, so only the one option is available. You can, however, change this to show in your notifications list rather than as emails, though. In this case, followed content would still be sent as a digest email or individual email per content posted, while the followed member would go to your notifications list instead.
  16. This was actually removed late in 3.x's life because it caused more problems then it actually solved. It was only ever meant to be run once after upgrading to 3.x from 2.x. In fact, this was the catalyst behind the entire background queue system, so it would just happen automatically. This is the same for 4.x - the post rebuild is only ever meant to run once after you upgrade, so it cannot be run again, unfortunately. This will only rebuild Lazy Load data in posts - not the full content.
  17. Custom CSS: .cAuthorPane_badge--moderator::before { content: "\f132"; } Change f132 to any FontAwesome icon (you can find the appropriate replacement by clicking on the icon on that page, and look next to the Unicode label).
  18. Statistical graphs are generated using Google Charts. If you have any Dashboard blocks loading statistics (like Registrations, Online Users, etc.) that will be why it's calling to gstatic.com.
  19. Yes, you can disable it in Community Enhancements.
  20. You can create a custom CKEditor plugin that allows you to create relative links (our default Link plugin will automatically add a protocol if it's not present). https://take.ms/XPywd
  21. No, there is no way to safely do this.
  22. This might do it for the front-end.
  23. ACP > Statistics > Reactions > Top Givers should have what you need.
  24. Every 5 minutes. And yes, it can be beneficial particularly for sites with a lot of simultaneous traffic as it'll offload all session handling from the database. Combined with guest page caching, it's entirely possible to serve a page to guests entirely from Redis and never touch the database.
×
×
  • Create New...