alfrex92
Forum Replies Created
-
Any idea how to fix this?
Forum: Plugins
In reply to: [Easy Table of Contents] If Table of Contents is activated in a postthanks, it is working 😀
Forum: Plugins
In reply to: [Easy Table of Contents] If Table of Contents is activated in a postSorry, I think that I didn’t explain myself.
From php, how can I verify whether the checkbox of ‘Insert table of contents’ is activated inside a post?
For example
<?php if (TOL is activated in this post) { do this } ;?>Thank you for your reply.
Is the content reflow issue also in your backlog?
Thank you for your time.
I noticed that the plugin has been updated. But, there are 2 issues.
1 )The noscript is being added inside the figcaption. According to google it needs to be outside.
Now:
<figcaption> <noscript> <img> </noscript> The caption </figcaption>According to google, it needs to be done like this:
<noscript> <img> </noscript> <figcaption> The caption </figcaption>2) The second issue that I found is that srcset is being added to the noscript. This is not necessary. The src is only necessary. Adding the srcset to the noscript will just increase the size of the HTML file.
Any update?
Another issue that I found is you are not preventing content reflow.
You can find more information here.
The easiest way to avoid content reflow is by using the padding-bottom technique.
Take a look at this plugin. You can see how that plugin is avoiding the content reflow by adding the padding-bottom in the container of the image.