Jump to content

Baian007

Clients
  • Joined

  • Last visited

Everything posted by Baian007

  1. Yes, in the About Me tab (i want to hook or add custom fields).
  2. I mean in the tab section, either under the "About Me" field or right before it. Thanks
  3. 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; } });
  4. It worked fine in beta3. I tried again, disabled the cache in Cloudflare, and restored the original ".htaccess" code, but I received the same results.
  5. After upgrading, the only issue I’m experiencing is with caching. When I visit the site as a guest and then log in, I need to manually refresh each page to clear the cache. This issue occurs across multiple browsers, including Safari, Chrome, and Brave.
  6. Successfully upgraded to Beta4 (self-hosted) with no issues.
  7. Hi, How can I add custom fields to the “About Me” tab in the user profile? I want to include custom fields for Personal Information directly within the “About Me” tab, rather than displaying them in a widget. Any suggestions?
  8. It works. Thank you @SoloInter and @Jimi Wikman
  9. Thank you, Jimi helped me out: This is the right structure Category 1 Category 1 Subcategory 1 Subcategory 2 Unfortunately, still not working
  10. I followed your instructions precisely, but I obtained the same result.
  11. @SoloInter, thank you, I am talking about having sub-forums in the same style Jimi did. When I select the feed option in the theme editor, it appears as shown in the attached screenshot. Although all sub-forums are under the parent category of Child Protection Concerns. category.
  12. Hi Jimi, Could you guide me on how to create sub-forums like those on your site? It looks so good.
  13. Thanks, Chris; I am using IPS v5 and want the same documentation database look (in IPS v4) for IPS v5.
  14. I would greatly appreciate it if you could fix it to match the template in version 4.
  15. Thank you, dear Invision community team, Successfully upgraded to beta 3 with "0" issues (self-hosted version).
  16. Dear Invision community team, Could we explore the option of displaying the files directly from subcategories? Additionally, what is the rationale for having an empty category solely to count the number of files in subcategories without actually displaying those files? I would appreciate your insights on this approach. Thank you.
  17. Thanks, Marc. I am going to wait.
  18. @Esther E. I don't see any fix in Beta 2. Please say the fix is coming in the next version. Be Well
  19. For me (self-hosted ), the upgrade was successful. The package was downloaded manually.
  20. I did the same thing - I created a template and hooked it to the offline page.
  21. Have you tried adding your code to the Page header or global Template? Check view the template and hook your code to the part you wish.
  22. Select your theme and choose the template option. You can create a custom template. Create a custom template and select to hook it to a specific template.
  23. I receive this error when clicking on Move after filling out all the requirements. "There appears to be a problem with your Amazon (My Bucket Name) file storage settings which can cause problems with uploads. After attempting to upload a file to the directory, the URL to the file is returning a HTTP error. Update your settings and then check and see if the problem has been resolved" I tried to upload files via CyberDuck and it works. The issue with the Invision Community code is that it only supports AWS S3 and doesn't accept any other storage options.
  24. Hi team, The theme editor isn't saving any color values. "/static/css/core_front_framework_framework.css" The file is missing. I have already checked the downloaded package, and it is not there. Best