mickhele
Forum Replies Created
-
Forum: Plugins
In reply to: [Ally - Web Accessibility & Usability] Set everything to disabled at start-upI didn’t mean the closing of the popup upon opening the page. I meant disabling all the accessibility features provided by the plugin, which can only be activated by clicking on a potential “Enable accessibility tools” button when the Ally popup opens. This way, it would be certain that the plugin does not cause any issues to the site. Basically, having only the Ally icon, without the plugin making any automatic changes to the page (even minimal), except after clicking this button in the popup.
I found this solution on a website and I must say I found it very interesting.
Forum: Plugins
In reply to: [Accessibility New Window Warnings] Issue with tooltip and WCAG validationOkay, but I suggest you apply a fix like the one I provided earlier to make the plugin ‘false positive’ proof.
In any case, thank you, @alh0319, for the information and the invitation to the meetups, which I will definitely attend in the future, given that website accessibility is becoming increasingly important in my work.Forum: Plugins
In reply to: [Accessibility New Window Warnings] Issue with tooltip and WCAG validationThank you Amber for your clarification.
Unfortunately, the accessibility market is currently quite confusing (at least from my perspective); I have not come across any analysis tool (excluding overlay widgets from the start, which I do not even consider) that offers a clear and accurate overview of a website’s accessibility level. Not even ‘axe DevTools’, which is the most recognised by experts in the field.
I realise that achieving accessibility primarily requires direct/manual intervention, but at the very least, having an accurate list of issues would be the minimum expectation. It’s like buying car insurance without being sure you are actually insured.
Making a website accessible in a schematic way is one thing, but working on a website styled like Apple’s is an entirely different matter.
In any case, thank you for reporting this false positive. It will remove Stark from the monitoring tools due to its unreliability.
Forum: Plugins
In reply to: [Accessibility New Window Warnings] Issue with tooltip and WCAG validationThis is the fix that I used waiting an update for the plugin:
<script>
(function () {
'use strict';
var TIP_ID = 'anww-tip';
var DEFAULT_TEXT = 'apre una nuova finestra';
var wired = false;
var tipObserver = null;
function isElement(node) {
return node && node.nodeType === 1 && typeof node.matches === 'function';
}
function patchTip(tip) {
if (!tip) return;
if (!tip.id) tip.id = TIP_ID;
var txt = (tip.textContent || '').trim() || DEFAULT_TEXT;
tip.setAttribute('aria-label', txt);
var a = document.activeElement;
if (isElement(a) && a.tagName === 'A' && a.target === '_blank') {
a.setAttribute('aria-haspopup', 'true');
a.setAttribute('aria-describedby', TIP_ID);
}
}
function wireTip(tip) {
if (!tip) return;
patchTip(tip);
if (tipObserver) tipObserver.disconnect();
tipObserver = new MutationObserver(function () {
requestAnimationFrame(function () { patchTip(tip); });
});
tipObserver.observe(tip, { childList: true, characterData: true, subtree: true });
}
function hookOnce() {
if (wired) return;
var tip = document.querySelector('div.anww-tooltip[role="tooltip"]');
if (!tip) return;
wired = true;
wireTip(tip);
['focusin', 'mouseenter'].forEach(function (evt) {
document.addEventListener(evt, function (e) {
if (isElement(e.target) && e.target.matches('a[target="_blank"]')) {
patchTip(tip);
}
}, true);
});
['focusout', 'mouseleave'].forEach(function (evt) {
document.addEventListener(evt, function (e) {
if (isElement(e.target) && e.target.matches('a[target="_blank"]') &&
e.target.getAttribute('aria-describedby') === TIP_ID) {
e.target.removeAttribute('aria-describedby');
}
}, true);
});
}
document.addEventListener('DOMContentLoaded', hookOnce);
var bodyObserver = new MutationObserver(function () {
var tip = document.querySelector('div.anww-tooltip[role="tooltip"]');
if (tip) {
bodyObserver.disconnect();
hookOnce();
}
});
bodyObserver.observe(document.body, { childList: true, subtree: true });
})();
</script>Forum: Plugins
In reply to: [Aruba Fatturazione Elettronica] Problema con plugin WpmlIl numero ID della richiesta/ticket era il seguente: 16389558A
Forum: Plugins
In reply to: [Aruba Fatturazione Elettronica] Not compatible with WPMLIl numero ID della richiesta/ticket era il seguente: 16389558A
Forum: Plugins
In reply to: [Aruba Fatturazione Elettronica] Problema con plugin WpmlHo lo stesso problema e già contattato il team di assistenza settimane fa ma nulla è ancora stato risolto. Inoltre, non capisco perché etichettate queste richieste come “resolved” quando invece non lo sono.
Forum: Reviews
In reply to: [Maximum Products per User for WooCommerce] Compatibility with SureMemberOk, thanks!
Forum: Reviews
In reply to: [Maximum Products per User for WooCommerce] Compatibility with SureMemberOk, thank you. I’ll try the Pro version when your development team checks the compatibility with this plugin.
Forum: Reviews
In reply to: [Maximum Products per User for WooCommerce] Compatibility with SureMemberHi… I’m using SureMember: https://suremembers.com/
Forum: Reviews
In reply to: [SEOPress - AI SEO Plugin & On-site SEO] Last update broke down the websiteAfter four months of switching to SEOPress from RankMath I have not yet left a review regarding about the plugin but I must say that so many problems I had not had with the previous plugin. I am beginning to regret the choice I made. At the moment I have significant issues with version 7.5, I am waiting to see how tech support will solve it. At the moment, I am very disappointed and confirm as much as the issues raised in this review.
However, I don’t want to leave any evaluation yet, because I know how bad the negative ones do in terms of business, so I still want to leave some trust in the SEOPress team.Forum: Plugins
In reply to: [SEOPress - AI SEO Plugin & On-site SEO] 7.5+ PHP fatal error with iubendaThe bug is with Google Tag Manager.
I’ve moved my GTM code from manual settings on the website on SEOPress -> Analytics -> Custom Tracking, and the PHP Fatal errors have gone away, but the high CPU consumption remains.
With 7.4 works well, instead with the last 7.5 version not.Okay, I’ve installed the 3.10.3, and now it works well.
Thanks!I receive the same error.
Fatal error: Uncaught Error: Call to undefined function wppb_get_active_form_design() in /home/customer/www/mydomain.com/public_html/wp-content/plugins/profile-builder/features/functions.php:75 Stack trace: #0 /home/customer/www/mydomain.com/public_html/wp-includes/class-wp-hook.php(310): wppb_add_plugin_stylesheet('') #1 /home/customer/www/mydomain.com/public_html/wp-includes/class-wp-hook.php(334): WP_Hook->apply_filters('', Array) #2 /home/customer/www/mydomain.com/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #3 /home/customer/www/mydomain.com/public_html/wp-includes/functions.wp-styles.php(57): do_action('wp_print_styles') #4 /home/customer/www/mydomain.com/public_html/wp-includes/class-wp-hook.php(310): wp_print_styles(false) #5 /home/customer/www/mydomain.com/public_html/wp-includes/class-wp-hook.php(334): WP_Hook->apply_filters(NULL, Array) #6 /home/customer/www/mydomain.com/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #7 /home/customer/www in /home/customer/www/mydomain.com/public_html/wp-content/plugins/profile-builder/features/functions.php on line 75Hi @luciamarinescu ,
Thanks for your reply, but as I said before, I’ve resolved the issue with a fix from the WPML tech support (missing “themeisle-blocks/accordion-item” on “gutenberg-block” in the advanced WPML editor).
Concerning Perfmatters, the problem has been partly solved with the above “fix” and the “reset” of the “Script Manager.”
Thanks!