XhmikosR
Forum Replies Created
-
Forum: Plugins
In reply to: [a3 Lazy Load] Invalid HTMLSo, any news about this? It’s been 4 months already.
Forum: Plugins
In reply to: [a3 Lazy Load] Stopped working after WP 4.4Thanks for the fix. It now appears to work again!
Forum: Plugins
In reply to: [W3 Total Cache] Add Browser Cache support for WOFF2Try adding this in your .htaccess at the very end:
# Custom directives for woff2; remove them if/when W3TC supports it <IfModule mod_mime.c> AddType application/font-woff2 woff2 </IfModule> <IfModule mod_expires.c> ExpiresByType application/font-woff2 A31536000 </IfModule> <FilesMatch "\.(woff2|WOFF2|)$"> <IfModule mod_headers.c> Header set Pragma "public" Header append Cache-Control "public" </IfModule> </FilesMatch> # end custom directives
This will make sure .woff2 files are served with the proper headers.
Forum: Plugins
In reply to: [W3 Total Cache] Add support for woff2Try adding this in your .htaccess at the very end:
# Custom directives for woff2; remove them if/when W3TC supports it <IfModule mod_mime.c> AddType application/font-woff2 woff2 </IfModule> <IfModule mod_expires.c> ExpiresByType application/font-woff2 A31536000 </IfModule> <FilesMatch "\.(woff2|WOFF2|)$"> <IfModule mod_headers.c> Header set Pragma "public" Header append Cache-Control "public" </IfModule> </FilesMatch> # end custom directives
This will make sure .woff2 files are served with the proper headers.
Forum: Plugins
In reply to: [WP Extra File Types] Will you add WOFF2 on the next realease?Sorry, wrong plugin :/
Forum: Plugins
In reply to: [a3 Lazy Load] lazy-hidden not working with WP 4.4It’s the same issue as https://www.ads-software.com/support/topic/stopped-working-after-wp-44
Forum: Plugins
In reply to: [a3 Lazy Load] Stopped working after WP 4.4What I noticed today is that Internet Explorer 10 and 11 works fine :S
Forum: Plugins
In reply to: [a3 Lazy Load] Stopped working after WP 4.4Hi, Ngugen.
Thanks for looking into it. I’m waiting for a solution but in the meantime I switched to BJ Lazy Loader. I prefer a3 lazy load, although I do believe it should be smarter with its styles so that it doesn’t result in an extra HTTP request, but that’s already reported https://www.ads-software.com/support/topic/question-about-the-included-css
Thanks!
Forum: Plugins
In reply to: [a3 Lazy Load] Question about the included CSSAfter looking into this closer, the cause is the media part you use for the linked CSS (only screen).
So there are 2 possible solutions:
1. inline the CSS
2. put the CSS code into a@media only screen {}
and usemedia="all"
in thelink
tag; this will allow optimizing plugins to bundle the script