Recent content by TnT

  1. TnT

    IndexNow error 422 Keylocation is not allowed

    For a while now, I have been getting the following error messages: ErrorException: IndexNow error: [422] Keylocation is not allowed. Please ensure the keylocation url belongs to the site mentioned in the host parameter Stack Trace: #0 src/XF.php(270): XF\Error->logError('IndexNow...
  2. 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:
  3. 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.
  4. TnT

    Duplicate 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%?
  5. 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...
  6. 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.
  7. 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.
  8. TnT

    Fixed The PHP version used is outdated

    Here the PHP version used seems to have not been recognized correctly:
  9. 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
  10. 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...
  11. 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.
  12. 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...
  13. 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 }
  14. 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.
  15. 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...
Back
Top Bottom