Michał Dudziński
Forum Replies Created
-
I managed to decrease the impact of CookieYes on PageSpeed in two steps.
- Make it not being the LCP, i.e. make it smaller. My stats show, that less than 1% of the visitors chose to customize the cookie consent, so I got rid of that button. Also cut down the text to bare minimum.
- Eliminate the script.js from Render Blocking resources. I use Flying Scripts plugin on all my websites to delay loading various JS files (cookies, Google tags, tracking scripts, chatbots etc.) at least 3s after the initial page load. It doesn’t impact user experience, but all those scripts do not count as render blocking anymore.
That was quick. And it works.
This is how you get 5 stars 😉
Thanks for the support.
Hi @dhanush22
I run some test, no caching, new quiz.
As soon as I edit one Label, the contact form appears before the questions and changing the setting has no effect.
I run WP 6.7.1 and plugin version 9.2.2.
I’m having the same problem. Setting the option to ‘after’ has no effect, it still shows before. I have changed the button labels as I need them in Polish.
I have the latest version of the plugin and WP, PHP 8.0.- This reply was modified 1 year, 6 months ago by Michał Dudziński.
Forum: Plugins
In reply to: [WPVulnerability] Wrong plugin identified as vulnerableHello,
I have a similar problem. ai-engine plugin is being recognised with having a vulnerability in version below 4.7.8, when in fact it the latest version is 2.1.3.
The vulnerability details suggest the affected plugin is called WordPress Chatbot, AI Chatbot or WPBot Lite, not the AI Engine plugin.
Is it a case of a mismatched ID as well?
@chitocamacho I mean, when you add the Table of Contents block to the post, it automatically generates an id in the HTML markup of every header in the post, so it can link to them.
Now I can see the issue is a conflict with the ‘Orphans’ plugin. That plugin adds automatic
after solitary letters in the post content, so they don’t hang at the end of the paragraph.If I add the
to the header manually, the ToC block works just fine, but when that non-breaking-space is added by the ‘Orphans’ plugin, the id is not created and the links are broken.Forum: Plugins
In reply to: [Orphans] Conflict with Kadence Blocks’ list blockForum: Plugins
In reply to: [Orphans] Conflict with Kadence Blocks’ list block@gijo I have found the issue.
I had empty lines in the Keywords list (I had many scripts to block and tried to organize them that way).
It was no problem when using PHP 7.4, but after switching to PHP 8.0 it caused some kind of error and prevented all of site’s JS files to from loading completely. That error was not logged into console, or WP DEBUG.
@gijo I checked again.
Still, no console errors. Wp_debug true – no errors.
Running Astra Pro theme. WP 6.1. All up to date. PHP 8.0.
With FS enabled, no JS files are loaded, none at all. All plugins disabled, no difference.
Where to look now?
I have found a conflict with Flying Scripts plugin deferring one particular script.
My problem is resolved.
Forum: Plugins
In reply to: [Orphans] 2.9.10 Fatal errorThanks for a quick response. 2.9.11 fixed all the problems.
And yes, I know, I have to update my PHP but it’s out of my hands unfortunately.
Hi @webtoffee
2.1.1 fixed the problem for me. Thanks for a quick response.
Forum: Plugins
In reply to: [Grids: Layout builder for WordPress] Area padding on mobile not workingHi @simo_m,
Yes, 1.3.6 update fixed the issue for me, thanks for help.
Forum: Plugins
In reply to: [Grids: Layout builder for WordPress] 1.3.0 update and grid template rowsHi @andg,
I’m using Chrome, cache is cleared and hard reloaded. I can see this CSS in the inspector in Block Editor:
grids.css?ver=1.3.3
@media screen and (min-width: 783px) .grids-areas-wrapper>.editor-inner-blocks>.editor-block-list__layout, .grids-areas-wrapper>.block-editor-inner-blocks>.block-editor-block-list__layout { display: grid; position: relative; grid-template-columns: var(--section-columns); grid-template-rows: var(--section-rows); }and that
--section-rowsvariable has this value:repeat(6, 1fr);So you can see the rows have a fixed
1frheight, whereas on the front-end they have valueautoso they adapt to the content and collapse when necessary.Regards,
Michael