Nazar Hotsa
Forum Replies Created
-
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] All Index Files are EmptyHey @patrickposner and @sr293
I was helping Justin troubleshoot this and it was the following code in the theme that the plugin was choking on:
<!--[if lt IE 7]><html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]><html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]><html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->After replacing it with just
<html class="no-js" lang="en">everything worked fine.
Looks like the extract_and_replace_urls_in_html function was parsing that code incorrectly and interpreted it as four opening html tags, thus couldn’t parse anything else after that part.
Forum: Plugins
In reply to: [Antispam for Elementor Forms] PHP fatal errorAwesome, thank you!
Forum: Plugins
In reply to: [Antispam for Elementor Forms] PHP fatal errorI narrowed this down to a checkbox field that has more than 1 option. Like this: https://postimg.cc/dkPYw1bT
If the field contains 1 option – everything works fine, the error happens with 2 and more options.
I suspect that other fields that can have multiple values (e.g. radio buttons) will cause the same error, although I didn’t test that.
When you address this, keep in mind that various Elementor addons add their own field types, e.g. https://www.dynamic.ooo/dynamic-content-for-elementor/features/categories/forms/
Thanks!
Forum: Plugins
In reply to: [Widgets for Google Reviews] WCAG issuesHi.
I use https://chromewebstore.google.com/detail/wave-evaluation-tool/jbbplnpkjmmeebjpijfedlgcdilocofh for checking things like contrast issues, redundant links and alt attributes, etc.
However, this tool won’t catch the issue with keyboard navigation. Check this out: https://webaim.org/techniques/keyboard/
This article will help you understand the issue and what needs to be fixed. If in doubt – don’t hesitate to contact me, I can help with further testing.
Awesome, thank you!
We are setting up a series of demo sites for our clients.
Basically, they can choose from a number of pre-made designs and then proceed placing an order for their new website.
We’d like to show them in advance that our designs don’t have accessibility issues.
Thanks, I’ll give it a try. Consider switching to https://github.com/Splidejs/splide it’s built with accessibility in mind.
I think you misunderstood me. It’s not about adding a new feature, it’s about making the existing feature accessible. Please check https://www.w3.org/WAI/WCAG21/Understanding/keyboard-accessible.html
You can also check the native testimonials carousel widget by Elementor, it is accessible from a keyboard.
Hey @yordansoares.
Many thanks for your reply.
I’ve examined order metadata (in wp_postmeta table, this particular project is not using HPOS yet).
Parent orders have ‘_created_via’ field set to ‘checkout’ while renewal orders have it set to ‘subscription’.
Also, renewal orders have ‘_subscription_renewal’ field which contains the order ID or the parent order. Parent orders don’t have this field.
Forum: Themes and Templates
In reply to: [Blockbase] ponyfill.cssThanks for the informative tips!
Forum: Themes and Templates
In reply to: [Blockbase] ponyfill.cssThanks for the explanation @pbking
What are the downsides of using Blockbase as a parent theme?
Great, that would be a neat feature.
Forum: Plugins
In reply to: [Code Block Pro - Beautiful Syntax Highlighting] Wrap long linesAdding CSS works fine, I tested it and all is good.
The reason I’m saying it should be supported out of the box is this: https://www.w3.org/WAI/WCAG21/Understanding/reflow.html
TL;DR:
Having to scroll in two dimensions to view content on a page makes seeing and reading the content difficult. If a user has to scroll in order to see a full line of text, it becomes very difficult to then follow to the next line.
Forum: Plugins
In reply to: [Code Block Pro - Beautiful Syntax Highlighting] Wrap long linesThe downside of horizontal scrolling is accessibility.
I’ve tested two plugins that have line wrapping – https://ww.wp.xz.cn/plugins/wp-codemirror-block/ (global setting in plugin option) and https://ww.wp.xz.cn/plugins/prettycode/ (block-level setting) but your is better in terms of performance.
I’ll go with custom CSS for now, thanks for pointing me in the right direction 🙂
Yeah, the problem is definitely in the CSV file, but how would I even start to troubleshoot it? That error message doesn’t give any hits.
Anyway, I created a ticket as you suggested – ticket #64959