Everything posted by Baian007
-
Profile about me tab
Baian007 replied to Baian007's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionYes, in the About Me tab (i want to hook or add custom fields).
-
Profile about me tab
Baian007 replied to Baian007's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionI mean in the tab section, either under the "About Me" field or right before it. Thanks
-
Preload font
Baian007 replied to Adlago's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionTo 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; } });
-
Beta 4 is through the door!
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.
-
Beta 4 is through the door!
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.
-
Beta 4 is through the door!
Successfully upgraded to Beta4 (self-hosted) with no issues.
-
Profile about me tab
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?
-
Show me yours and I'll show you mine...
Baian007 replied to Jimi Wikman's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionIt works. Thank you @SoloInter and @Jimi Wikman
-
Show me yours and I'll show you mine...
Baian007 replied to Jimi Wikman's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionThank you, Jimi helped me out: This is the right structure Category 1 Category 1 Subcategory 1 Subcategory 2 Unfortunately, still not working
-
Show me yours and I'll show you mine...
Baian007 replied to Jimi Wikman's post in a topic in Invision Community 5: Beta Testing's Beta Discussion
-
Show me yours and I'll show you mine...
Baian007 replied to Jimi Wikman's post in a topic in Invision Community 5: Beta Testing's Beta Discussion
-
Show me yours and I'll show you mine...
Baian007 replied to Jimi Wikman's post in a topic in Invision Community 5: Beta Testing's Beta Discussion@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.
-
Show me yours and I'll show you mine...
Baian007 replied to Jimi Wikman's post in a topic in Invision Community 5: Beta Testing's Beta Discussion
-
[v5][Pages][Release] Advanced Release database!
Baian007 replied to Chris59's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionThanks, Chris; I am using IPS v5 and want the same documentation database look (in IPS v4) for IPS v5.
-
[v5][Pages][Release] Advanced Release database!
Baian007 replied to Chris59's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionI would greatly appreciate it if you could fix it to match the template in version 4.
-
Beta 3 is here! Spooky!
Thank you, dear Invision community team, Successfully upgraded to beta 3 with "0" issues (self-hosted version).
-
Suggestion for display Files From Subcategories
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.
-
Forum Type is missing
Baian007 replied to Baian007's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionThanks, Marc. I am going to wait.
-
Forum Type is missing
Baian007 replied to Baian007's post in a topic in Invision Community 5: Beta Testing's Beta Discussion@Esther E. I don't see any fix in Beta 2. Please say the fix is coming in the next version. Be Well
-
Well hello Beta 2, where have you been?
For me (self-hosted ), the upgrade was successful. The package was downloaded manually.
-
Custom template
Baian007 replied to Adlago's post in a topic in Invision Community 5: Beta Testing's Beta Discussion
-
Custom template
Baian007 replied to Adlago's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionHave 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.
-
Custom template
Baian007 replied to Adlago's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionSelect 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.
-
Forum Type is missing
Baian007 replied to Baian007's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionI 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.
-
Theme editor issue
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