Recent content by TnT

  1. TnT

    Standard Library by Xon

    Hmmm, missing files? The only change between version 1.21.9 & 1.21.10 i can detect is another version in addon.json:
  2. TnT

    Fixed Button link in email notifications for moderators is relative, must be absolute

    Button (View content) link for in email notifications for moderators is relative, must be absolute in emails to work.
  3. TnT

    The percentages do not seem to be correct in my forum. Shouldn't the total be 100%?

    The percentages do not seem to be correct in my forum. Shouldn't the total be 100%?
  4. TnT

    Stars needs more space...

    The space is hardcoded to 50px. You could add a template modification (did it recently for my forums): Template: xfrm.less Search for: .ratingFilter-rating { min-width: 50px; } Replace with: .ratingFilter-rating { min-width: 70px; } It...
  5. TnT

    Fixed The PHP version used is outdated

    Perhaps it would be better to store the version string (8.3) in the code and not in the language so as not to be dependent on outdated translations.
  6. TnT

    Fixed The PHP version used is outdated

    Ok, seems to be because you changed the phrase in the final release and now recommend PHP 8.3. This phrase has not yet been translated in my language.
  7. TnT

    Fixed The PHP version used is outdated

    Here the PHP version used seems to have not been recognized correctly:
  8. TnT

    Structured data for DiscussionForumPosting: text, image or video is required

    See: https://developers.google.com/search/docs/appearance/structured-data/discussion-forum?hl=en#text-sd See also discussion here: https://xenforo.com/community/threads/markup-improvements-for-google.213088/page-7#posts
  9. TnT

    Geoblock Registration

    Hi Sim, thx for your great addon, using it for long while now. I would like to make a feature request: It would be nice if you could whitelist certain email domains when registering. Background: Because we offer login with Facebook, our ‘App’ (the forum with its login functionallity) is...
  10. TnT

    Fixed Login via Passkey in Admin does not work

    Forgotten to enable https on my local dev environment. Works for me now. Perhaps you can hide the passkey buttons when no https enabled. It would probably save a help request or two.
  11. TnT

    Fixed Login via Passkey in Admin does not work

    After I click on the passkey button, nothing happens. In the developer console i see the following error: 13:52:36.033 webauthn.js?_v=fecc8197:301 Uncaught TypeError: Cannot read properties of undefined (reading 'get') at Object.get (webauthn.js?_v=fecc8197:301:26) at fn.typeGet...
  12. TnT

    Fixed JS: Can't prevent form from being submitted

    Tried it and didn't worked for me. For my usecase this works: XF.on(document, 'submit ajax-submit:before', (e) => { e.preventDefault() e.preventSubmit = true }
  13. TnT

    Fixed JS: Can't prevent form from being submitted

    I have now managed it by listening to the two events "submit ajax-submit:before" at the same time. However, I don't find this very exciting.
  14. TnT

    Fixed JS: Can't prevent form from being submitted

    I am in the process of rewriting one of my addons, as jquery is no longer used. A modal should be displayed as soon as attachments are uploaded to a post. Sending the form with the message should be prevented until the modal dialog is confirmed with "ok". And this is exactly where my problem...
  15. TnT

    Fixed Cache without lifetime not working

    While testing 2.3.0 Beta 1 i figured out, caching without liefetime like this: \XF::app()->cache()->save('test', 'works'); returns true, but \XF::app()->cache()->fetch('test'); returns false. Setting lifetime explicit to 0 also returns false. Only Providing a livetime returns the expected...
Back
Top Bottom