Jump to content

Ryan Ashbrook

Invision Community Team
  • Posts

    12,669
  • Joined

  • Days Won

    13

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Ryan Ashbrook

  1. We have some legacy redirects in place to assist with redirecting URL's from previous versions. You can use these to achieve what you need, for instance: https://invisioncommunity.com/?app=forums&module=forums&controller=findpost&pid=2863639 Will take you to your post in this topic.
  2. Points aren't shown on the front-end, however if you look up the account in your Admin CP, then you can see the exact total.
  3. Yes, we prefer separate tickets for separate issues as they are easier to track if they need to move between different teams.
  4. Yes, this is fixed in the latest release.
  5. Try using the like() method instead. Also, you do not need to pass your query to query() - simply convert $select to an array using the iterator_to_array() function. $select = \IPS\Db::i()->select( '*', 'news_artcms_news', array( \IPS\Db::i()->like( 'categorynum', 'main', TRUE, TRUE ) ), 'news_artcms_news.num DESC', array( 0, 12 ) ); $results = iterator_to_array($select);
  6. The link is linking to where that admin currently is in the Admin CP - that is why there is no arrow next to your name, because it would just link to the page you are already on. 🙂
  7. We attempt to account for renamed admin directories. If that is not working, then there's possibly a bug somewhere and you should submit a ticket.
  8. In your Admin CP > Members > Groups, edit each group and under the Blogs tab, make sure the options are enabled.
  9. Yes, you should be able to specify the positioning of the parameters. Try this (of course adjust for your language): <a href='%2$s'>%3$s</a> %1$s's in <a href='%4$s'>%5$s</a> was marked as the answer The parameters should be able to follow PHP's sprintf() function identifier rules.
  10. I'll take a look. The original change was introduced for security, so we'll want to test any changes thoroughly to ensure there's no regression on that front.
  11. I corrected my post to clarify shortly after as I realized I forgot to mention that part specifically. 🙂
  12. Yes, when IPS4 checks for updates for itself, it also checks 3rd party items. That being said, however, that is largely dependent on the author setting a URL to send the update check to. 3rd party items linked to the marketplace will use version information from there.
  13. This - we were a bit busy, so we weren't able to update the Developer Tools immediately for 4.6. Try re-downloading them.
  14. Take a look in your System Logs under Support. You should see some entries for template_exception which will provide the actual error.
  15. If you are on Cloud, we are aware and the issue should be resolved shortly.
  16. That's fair - however I should note that the handling of banned members has not changed between the two versions.
  17. I'd recommend using the demo instead: https://invisioncommunity.com/demo
  18. 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;
  19. 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.
  20. You can just create a brand new theme and it will be default with no changes - just select Manual Mode when creating. 🙂
×
×
  • Create New...