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. I'm not sure what you mean - can you clarify what it is you are wanting to do? Everything in the software is fully translatable - just go to your Admin CP > Customization > Languages. Click the Translate button to the right of the language your community is using, and the text box on the top right can be used to find any words you wish to change.
  2. It would be the locale defined by your language pack. Edit your language pack in the AdminCP and make sure it is set correctly. The default is English (United States) whereas you likely want English (Australia) instead.
  3. It does a number of things: Cancel all invoices. Resolve all support requests. Ban the account. Add a note indicating why the account was voided. Void or refund all transactions. Cancel all billing agreements. Cancel all purchases. All of these are elective, so you decide what happens when you void an account.
  4. GD is a part of PHP by default so if there are any issues it would likely be between libgd and PHP itself, rather than IPS4.
  5. As mentioned, you can chain the method calls: $select = \IPS\Db::i()->select( ... ) ->join( ... ) ->join( ... ) ->first(); The same applies to forceIndex(), setKeyField(), and setValueField().
  6. Account Settings > Content View Behavior. https://invisioncommunity.com/settings/links/
  7. AFAIK, 3.4.8 was mostly compatible with strict mode, though it's been a very long time. For Invision Community 4, we develop with strict mode enabled (it's a requirement of our development standards and actually enforced when in development mode), so yes it is fully compatible.
  8. There should be no difference in how the software operates between MySQL and MariaDB.
  9. Correct - it's a warning reference. It contains data pertaining to the last item you were viewing to store with the warning if you issue one.
  10. The instanceof operator would also work. if ( \IPS\File::getClass('core_Emoticon') instanceof \IPS\File\Amazon ) { // ... etc ... }
  11. You can still email in, as always. Send an email to support@invisionpower.com and we can take a look for you. I'll move this to the development gateway forum as it's not explicitly feedback.
  12. Are they just JS and Image files? If so, you have a few options: You can add them as Resources to your application (resources do not necessarily need to be images - they can be anything from images, fonts, JS, etc.) and then load them via the {resource} plugin. Any reason you're not using the hosted version? Leaflet seems to offer several free CDN's for hosting: https://leafletjs.com/download.html - using a hosted option means you only need to keep track of the version to include in your app, rather than needing to update the entire file itself. It'll also reduce the size (though, in this case, not likely enough to make a big difference).
  13. What kind of icon? You can include really any HTML in there - for your prefix, you would either do this, for an actual image: <img src='/path/to/image.png' alt='Group Name'><span style='color:white; background:#cd7f32; font-weight: bold; padding: 3px 8px; border-radius: 3px; text-shadow: #000 2px 2px 4px ;'> Or for a Font Awesome icon, you would do this (in this case, you can also control the color - if you want it to match the rest of the group name, then you would place it inside the span rather than outside): <i class='fa fa-ICON'></i><span style='color:white; background:#cd7f32; font-weight: bold; padding: 3px 8px; border-radius: 3px; text-shadow: #000 2px 2px 4px ;'>
  14. You're missing the mbstring extension in PHP, so your host will need to install it.
  15. It's a built-in feature - you can choose what happens when clicking on the title: https://invisioncommunity.com/settings/links/
  16. You need to set up a local server in order to do so - personally, on Windows, I use AppServ.
  17. Please submit a ticket - looks like an issue with the SSL Certificate which, if you're on Cloud, we'll need to take care of.
  18. Can you submit a ticket so we can look into this please?
  19. Yes, more than likely - you can use the Theme Differences tool to see all the changes: https://invisioncommunity.com/index.php?app=core&module=system&controller=plugins&do=diff
  20. Oh, no that is made for just simple plaintext. If you want to do dynamic things like JavaScript or PHP, then the templates would need to be modified. 🙂
  21. {expression="date('Y')"} Try that.
  22. Is the event in the past? The "Maybe" option will only show for future events. Events in the past will only have "Attended" or "Could Not Attend."
  23. ACP > Customization > Emoji . Custom Emoji
×
×
  • Create New...