Jump to content

Baian007

Clients
  • Posts

    81
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Baian007's Achievements

  1. Hi Matt, I have tried all versions of Hook type but had no luck.
  2. Dear team, Why isn't this code working when I hook it to the offline page? Is there any solution? {{if member.isAdmin()}} <!-- Shows if the user is an administrator --> {{endif}} {{if member.inGroup('x')}} <!-- Shows if member is in group 'x' --> {{endif}}
  3. The upgrade went smoothly and successfully (self-hosted), and thank you for: -Check that listener class exists before loading. Some elements were flashing after the page loaded, but now everything is working perfectly.
  4. Hi team, When I try to submit a file (URL), it does not show a button to add another file. However, if I click submit without filling in all the fields and the page refreshes, it shows the button. files-submit-bug.mp4
  5. Hi team, When I try to submit a file (URL), it does not show a button to add another file. However, if I click submit without filling in all the fields and the page refreshes, it shows the button. files-submit-bug.mp4
  6. Thank you, ghinton, It is running through cron (-d memory_limit=-1 -d max_execution_time=0). Unfortunately, the cache issue still persists.
  7. What do you mean? Anyways, the problem is still there...
  8. Yes, it is. Does that mean it is a cache issue?
  9. Yes, in the About Me tab (i want to hook or add custom fields).
  10. I mean in the tab section, either under the "About Me" field or right before it. Thanks
  11. On the "/online/" page, the Online Members section does not update the user location (what the user is viewing). Even after 25 minutes, the location remains unchanged. I don't know if this is related to the cache, but after clearing the system cache and browser cache, it is now updating.
  12. To Traverse up the DOM to check if any ancestor has aria-hidden="true" and Traverse up the DOM to check if any ancestor previously had aria-hidden, I added this to js file in the theme document.addEventListener('focusin', function(event) { let element = event.target; while (element) { if (element.hasAttribute('aria-hidden') && element.getAttribute('aria-hidden') === 'true') { console.warn('Removing aria-hidden from ancestor of focused element to prevent accessibility issues.', element); // Temporarily remove aria-hidden element.setAttribute('data-aria-hidden-temp', 'true'); element.removeAttribute('aria-hidden'); } element = element.parentElement; } }); document.addEventListener('focusout', function(event) { let element = event.target; while (element) { if (element.hasAttribute('data-aria-hidden-temp')) { console.warn('Restoring aria-hidden to ancestor after focus out.', element); element.setAttribute('aria-hidden', 'true'); element.removeAttribute('data-aria-hidden-temp'); } element = element.parentElement; } });
  13. it is a default one, I have changed nothing.
×
×
  • Create New...