kimvl
Forum Replies Created
-
Forum: Plugins
In reply to: [Ally - Web Accessibility & Usability] IconHello, I found a workaround to add a custom icon (or link/button, positioned and styled anyway you like) anywhere in my theme, and make it trigger the Ally Accessibility Widget. I hide the default icon for web & mobile and only use my custom icon to open and close the Ally Widget.
I shared my workaround in this forum post:
https://wordpress.org/support/topic/add-accessibility-link-trigger-to-main-menu/Hi there, if you’re still looking for a solution:
It looks like this issue is (partly) solved in the latest update. They added a widget for Gutenberg en Elementor, to insert a link to trigger the Ally accessibility Widget (info: https://elementor.com/help/trigger-ally-from-a-webpage/)
Well, I don’t use the Gutenberg Editor or Elementor Editor for my website but I found a workaround to use this feature anyway. The Gutenberg widget inserts this code:
<div class="wp-block-ally-custom-link">
<a class="ally-widget-trigger" href="#">Open Ally Widget</a>
</div>In my theme’s code I just added a button with the class ‘ally-widget-trigger‘ . I can position and style it anyway I want 🙂 . Adding a custom link to your menu with url: # and class: ‘ally-widget-trigger‘ also works (info: https://themesharbor.com/adding-a-custom-class-to-a-wordpress-menu-link/ )
This button only functions properly on Gutenberg pages (and probably on Elementor pages, didn’t test this). On all the other pages, it does NOT open the widget. But there seems to be a workaround:
On Gutenberg pages, this script is loaded in the footer:
<script src="https://wordpresswebsite.com/wp-content/plugins/pojo-accessibility/modules/widget/assets/js/frontend.js?ver=3.3.0" id="ea11y-gutenberg-custom-link-js"></script>Manually adding this script to my theme (using the wp_register_script function in functions.php ) solved the issue for me. The button is working on all pages now.
Another option is to add the JS content of that script directly to the JS code of your theme:
document.addEventListener('DOMContentLoaded', () => {
const customLinks = document.querySelectorAll('.ally-widget-trigger');
customLinks.forEach((link) => {
link.addEventListener('click', () => {
if (window?.ea11yWidget?.widget?.open) {
return window.ea11yWidget.widget.isOpen()
? window.ea11yWidget.widget.close()
: window.ea11yWidget.widget.open();
}
});
});
});Both options seems to work fine (allthough I realize it’s a kind of a tricky workaround).
As long as there is no better/official option to trigger the Ally Widget from your menu or theme, this solution might help some of you out?
Hello, I was looking for this answer as well. I hope there’s a way to make this happen.
Hi @samuelsilvapt,
The issue is solved after the latest update.
Thank you so much for your updating and replying so fast!Kim
Forum: Plugins
In reply to: [Fullscreen Menu] JavaScript error: _afs_owl_cart_is_not_definedMany thanks @samuelsilvapt for your quick reply and update. It seems like the issue is solved. It’s working fine now.
Keep up the good work, it’s appreciated! 🙂
KimForum: Reviews
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Very helpfulHello Aert,
For example: I wasn’t able to edit the content of the cookie policy. Or is this possible, maybe I overlooked something? And the privacy policy, like Mario mentioned.
One problem that I encountered: I was using a contact form (CF7) with the most recent Google ReCaptcha V3 (I realise that it’s very tricky with GDPR). After activating the cookie bar, my contact form displayed like it used to, but didn’t function unless visitors accept all cookies. I admit; I should have checked this first… but I forgot to test it and I found out weeks later that my contact form dind’t function well.
There is no warning that all cookies need to be accepted to be able to use the form (like the warning that cookies have to be accepted to activate an embedded YouTube video). The contact form displays like it normally would but just doensn’t send the message. Visitors probably don’t understand that it’s because they rejected the cookies.
Maybe a warning/notice would have been nice? I deactivated ReCaptcha, but I haven’t found a GDPR-friendly replacement yet (one that actually works).
By the way, thanks and keep up the good work!
KimHello,
It looks like I’m facing the same problem and I would really like to know if this was solved by upgrading to the PRO version. Or was it caused by a different issue? Or not fixed at all?My form has been working fine for months, but it seems to be broken after the last updates (I haven’t updated to WP 5.0 yet, by the way). My form has only 4 steps and a maximum of 40 fields (6 textareas). All values form the first step are missing in the e-mail. These values are stored in de database (Flamingo) but are shown as [field-name] in the mail. Any ideas??
Thanks in advance!
Kim- This reply was modified 7 years, 3 months ago by kimvl.
Forum: Plugins
In reply to: [Contact Form 7 Star Rating] Required option not working?Today I also tried Contact Form 7 Star Rating with Font Awesome but the same problem occurs. I’m I the only one with this problem?
Forum: Plugins
In reply to: [Simple Lightbox] Lightbox mechanism seems to be broken after WP 3.7 updateUpdate 2.1.2. fixed the problem for me. Thanks!
Forum: Plugins
In reply to: [Simple Lightbox] Lightbox mechanism seems to be broken after WP 3.7 updateBy the way, when I add the CSS-link in the header.php file manually, Lightbox is working correctly. But I don’t think that’s the best way…
Forum: Plugins
In reply to: [Simple Lightbox] Lightbox mechanism seems to be broken after WP 3.7 updateI was using Simple Lightbox with the Twenty Thirteen theme and it was working correctly. I updated WordPress to version 3.7.1. and right after I updated Simple Lightbox to 2.1.1.
After that, Lightbox stopped working correcty. The photo is loaded at the bottom of the page, without CSS. The style.css files from the templates could not be loaded, the URL’s aren’t correct.
CSS is loaded from:
http://localhost/wp-content/plugins/simple-lightbox/themes/baseline/css/style.css AND
http://localhost/wp-content/plugins/simple-lightbox/themes/default/css/style.cssThe base url of the website is: http://localhost/sitename/
But the name of the website is missing in the URL’s of the CSS:
http://localhost/sitename/wp-content/plugins/simple-lightbox/themes/baseline/css/style.cssHas this anything to do with the update(s)? Is it easy to fix? Thanks!
Forum: Plugins
In reply to: [Features by WooThemes] 404 Error Page when visiting the features permalinkHi there, I had exactly the same problem. Creating and using categories didn’t solve the problem for me.
In my case the problem was solved by resetting the permalink structure. Permalinks were set to ‘Post name’ . I updated the permalinks to ‘Default’ and then back to ‘Post name’ and the problem was solved for my WP-site.
I hope this helps some of you out as well.