Jump to content

bfarber

Clients
  • Posts

    163,911
  • Joined

  • Days Won

    346

 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 bfarber

  1. You can't really, but generally speaking you wouldn't want to limit purchases? The "guest" could simply register and then make fraudulent purchases so I don't think you'd really gain much in this instance. A better option might be to review the fraud rules you have set up in the AdminCP to help catch issues if you are noticing a pattern, although it sounds like Stripe was one step ahead of you already in this case.
  2. I'm afraid there's no real option to do this built in. You'd either need to do it manually, or with a custom plugin.
  3. I went to create a brand new category in a Pages database, and this is the default for the template options: As far as I can tell there's no "bug" here. For some reason your client has a custom template applied to every category, instead of letting the category inherit the template defined at the database level. We already have an option to inherit the template, and it is the default when setting up a new category, so as far as I can tell what you are requesting is already present and how things work out of the box. If you can reproduce a specific bug let me know, but right now I'm not seeing any problems.
  4. The code you highlighted appears to be coming from oauth/token/index.php is that right? If so, that is the /token endpoint for an OAuth2 request and should not be getting hit when performing a generic /api/ request?
  5. You can put any URL into an iframe, however the community "wrapper" (header, footer, etc.) will still be displayed inside the frame.
  6. I've responded to your other topic on this question.
  7. They show up automatically here.
  8. 1) Highest reputation (only). 2) Reputation comes from reactions. 3) All time, there is no option to view just the last month 4) As per Paul E, posts is the forums app specifically while content is all apps
  9. I didn't provide exact instructions but rather general guidance. The code I supplied in option 1 there was to be pasted into the template that displays the warning, but will only work so long as the post isn't deleted.
  10. ipsButton_negative is red FWIW. But if you want to use other colors you would need to make some adjustments of course. Maybe define a new ipsButton_* class in your theme's custom.css file and then apply that class to your button.
  11. Links to external domains are automatically covered if the appropriate option is enabled. If you want internal domains to open in a new window as well then you may want to look into a plugin.
  12. We evaluated the behavior extensively and decided that the option is best served as an account option rather than a session option. This allows your preference to persist as long as you wish, and to persist across different devices.
  13. If the post on the site is not actually deleted but hidden, then you can use a variable within the template to show the content. Something like $warning->content()->mapped('body') If the post is in fact deleted, then you would need to retrieve the value at the time the warning is issued and store the body with the note for the member. That would require a plugin.
  14. There's no way to do this in PHP with stock code. Your options are 1. You can reference \IPS\Session::i()->userAgent and based on the browser or platform property, determine yourself if you consider it a mobile request. 2. You can use javascript and check ips.utils.responsive.currentIs('phone') which is determined based on responsive breakpoints rather than the platform.
  15. This is a support issue and I would recommend submitting a ticket. Specifically, it sounds like some of your javascript is not loading correctly or is causing an error. Running the support tool in the AdminCP may resolve the issue for you.
  16. We may add an API to add support for Unsplash but haven't yet.
  17. I'm not clear what you are trying to edit to include the body. Is this a notification (which one?), are you wanting to show it in the report or in the post, or something else? The answer is almost certainly "yes there's a variable that has that" but I need more information on where/context to tell you which one to use.
  18. I'm going to move this topic to the feedback forum as I think it's more feedback on improving the software than anything.
  19. If you are self hosted, patches may not be showing up right now. We're aware of this and looking into it. The underlying issue has to do with old caches not being cleared. The patch addresses it, but if you can't receive the patch then our next release 4.5.1 will resolve the issue as well.
  20. If you upload a video in the Pages media manager and then want to use it in a post, you would need to use the "Source" mode on the editor (meaning your group needs permission to post HTML) in order to post the appropriate HTML. If you upload a video to a post it will embed automatically, but if you want to embed a remote link as a video you will need to do so manually.
  21. You might want to use POP instead of piping in that environment.
  22. You can use different ipsButton_* classes for different colors. ipsButton_normal ipsButton_primary ipsButton_important ipsButton_light ipsButton_positive ipsButton_negative ipsButton_veryLight
  23. This has been raised internally as a suggestion. Thanks!
  24. To expand on @opentype's post, you can navigate in the AdminCP to Customization (paintbrush icon) > Themes. Click the </> icon next to your front end theme (if you have more than one you will want to do this for each). Click the "CSS" tab in the left hand column, then click on the custom.css file. From there you can add something like this, adapting it to display however you want .article-quote { color: red; }
  25. When logging in to the AdminCP, do parameters will be stripped from the URL. This is intended to help protected administrators from making unintended changes on their site by following a link (or being redirected) from a malicious source. We may be able to revisit this behavior in a future release now that stronger CSRF protections are in place. In the mean time, your only option would be to use a custom controller and put your actions in the manage method.
×
×
  • Create New...