Recent content by digitalpoint

  1. digitalpoint

    [DigitalPoint] App for Cloudflare®

    When the addon added support for Cloudflare Analytics, it seemed more appropriate to use the "analytics" XenForo endpoint for that and what was the analytics endpoint before that was changed to "stats". Long story short is the permission check was inadvertently not changed to the new endpoint...
  2. digitalpoint

    [DigitalPoint] App for Cloudflare®

    I do not, no. Maybe a question for your server administrator?
  3. digitalpoint

    [DigitalPoint] Better Google Analytics

    It’s a server-side error on Google’s side (or a proxy if your server is going through a proxy). 5xx errors are on the side of the server receiving the request and can’t be fixed on your side. You can disable serving the JavaScript from your own domain to work around it (no request to Google’s...
  4. digitalpoint

    [DigitalPoint] App for Cloudflare®

    I saw it… seems like a rather expensive way to send emails though. Like I’m not trying to spend thousands per month to send normal transactional emails. 🤷🏻‍♂️
  5. digitalpoint

    [DigitalPoint] Profiles

    Ya, if the account is being deleted, there really shouldn’t be anywhere that the display name is being cached like XenForo does with usernames. So if the account is deleted, all record of the display name (would be wiped from that action already).
  6. digitalpoint

    [DigitalPoint] Profiles

    This addon does nothing as far as GDPR goes. If use of this addon is somehow making your site illegal, honestly your best course of action is to not use it (or at least the parts that are causing legal issues in your jurisdiction). Although if you are just deleting a user account when they...
  7. digitalpoint

    [DigitalPoint] Profiles

    Not really sure what you are asking. There should not be anything preventing it from working with other addons. If it’s giving you a specific error, I can look into why it’s not compatible. If you are asking if it does something different when you have an unrelated third party addon installed...
  8. digitalpoint

    Use <main> element

    Within the PAGE_CONTAINER template, it probably makes sense to use the <main> element instead of a <div>: <div class="p-body-content"> becomes: <main class="p-body-content"> https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/main XenForo is already using most of the...
  9. digitalpoint

    [DigitalPoint] App for Cloudflare®

    Oh ya, I completely forgot about that. 😂 In that case, check your rules. You could also use their Trace tool to figure out what application or rule is blocking the request.
  10. digitalpoint

    [DigitalPoint] App for Cloudflare®

    This addon won’t change anything there. It controls your Cloudflare settings, but you can do that in your dashboard. Probably you have your “security level” set too high on your zone settings. For XenForo, it should be “essentially off”. It doesn’t make your site more secure (it’s a terrible...
  11. digitalpoint

    [DigitalPoint] Profiles

    Do you have a screenshot or URL? Maybe using a custom theme that it doesn’t jive with?
  12. digitalpoint

    [DigitalPoint] Profiles

    Edit the profile_less_macros template. Add whatever color you want to the .username--verified:after section and you could just remove the whole .username--at:before section to remove the @.
  13. digitalpoint

    [DigitalPoint] Profiles

    It doesn’t have a color selector, but it’s easy enough to edit the CSS to do the color.
  14. digitalpoint

    [DigitalPoint] Profiles

    Display names are never required and not all users can even have display names (it’s based on their user group settings). The “@“ isn’t a placeholder, it’s a designation you are seeing a username. If you are just trying to avoid ever displaying the @, it’s an easy CSS edit to remove it from...
  15. digitalpoint

    [DigitalPoint] App for Cloudflare®

    I haven't tested it, but I believe this should do it: $config['fsAdapters']['data/video'] = function() { return \XF\FsMounts::getLocalAdapter('data/video'); }; data/video is more granular than just data, so that should allow you to use an R2 bucket for data, but then override data/video...
Back
Top Bottom