<p>This allows processing of CSS, HTML and JS when the url contains certain query strings, but note that if there are other query strings found on the same url not on the list of allowed query strings, it will still not process the url.</p>
<?php_e('Purge Minified CSS/JS files instantly','fast-velocity-minify');?><spanclass="note-info">[ <?php_e('Cache files are only deleted if older than 24h by default, for compatibility with certain hosting providers.','fast-velocity-minify');?> ]</span></label>
<?php_e('Purge Minified CSS/JS files instantly','fast-velocity-minify');?><spanclass="note-info">[ <?php_e('CSS & JS cache files are preserved for 7 days by default, for better compatibility with certain hosting providers.','fast-velocity-minify');?> ]</span></label>
<br/>
</fieldset></td>
...
...
@@ -160,7 +160,7 @@
<td><fieldset>
<labelfor="fvm_settings_css_remove"><spanclass="fvm-bold-green fvm-rowintro"><?php_e('Remove the following CSS files','fast-velocity-minify');?></span></label>
<pclass="description">[ <?php_e('This will allow you to remove unwanted CSS files by URL path from the frontend','fast-velocity-minify');?> ]</p>
<pclass="description">[ <?php_e('This will allow you to remove unwanted CSS files by URI path from the frontend','fast-velocity-minify');?> ]</p>
<pclass="description">[ <?php_e('Will match using <code>PHP stripos</code> against the <code>href attribute</code> on the <code>link tag</code>','fast-velocity-minify');?> ]</p>
</fieldset></td>
</tr>
...
...
@@ -170,7 +170,7 @@
<td><fieldset>
<labelfor="fvm_settings_css_async"><spanclass="fvm-bold-green fvm-rowintro"><?php_e('Async the following CSS files','fast-velocity-minify');?></span></label>
<pclass="description">[ <?php_e('This will allow you to remove unwanted CSS files by URL path from the frontend','fast-velocity-minify');?> ]</p>
<pclass="description">[ <?php_e('This will allow you to Async CSS files by URI path from the frontend','fast-velocity-minify');?> ]</p>
<pclass="description">[ <?php_e('Will match using <code>PHP stripos</code> against the <code>href attribute</code> on the <code>link tag</code>','fast-velocity-minify');?> ]</p>
<labelfor="fvm_settings_settings_qs"><spanclass="fvm-bold-green fvm-rowintro"><?php_e('One query string key per line','fast-velocity-minify');?></span></label>
<p><textareaname="fvm_settings[settings][qs]"rows="7"cols="50"id="fvm_settings_settings_qs"class="large-text code"placeholder="--- check the help section for suggestions ---"><?phpechofvm_get_settings_value($fvm_settings,'settings','qs');?></textarea></p>
Improve your speed score on GTmetrix, Pingdom Tools and Google PageSpeed Insights by adjusting your CSS and JS files (defer, async, minify, combine, etc), compressing HTML, simplifying fonts and a few more speed optimization options.
Improve your speed score on GTmetrix, Pingdom Tools and Google PageSpeed Insights by adjusting CSS and JS files (defer, async, minify, combine, etc), compressing HTML, simplifying fonts and a few more speed optimization options.
== Description ==
...
...
@@ -49,8 +49,26 @@ You need a public directory to store and serve minified cache files. If you need
== Changelog ==
= 3.2.2 [2021.05.09] =
= 3.2.6 [2022.02.06] =
* cache purging fixes
= 3.2.5 [2022.02.01] =
* changed writing the css/js files to WP_Filesystem_Direct with a secondary fallback method
* fixed a bug when merging css/js can break the site layout if the plugin failed to write the cache file (there will be an html comment on the footer if this happens)
* renamed a common name class to avoid conflicts with other plugins
= 3.2.4 [2022.01.31] =
* WP 5.9 / PHP 8 maintenance release
* changed deferred css/js cache clearing from 24h to 7 days
* added cache purging support for nginx helper plugin
* added option to allow processing on specific query strings
* other bug fixes
= 3.2.3 [2021.05.15] =
* added auto varnish cache purge for Cloudways
* switched from WP_Filesystem_Direct() to WP_Filesystem()