Hi,
First time I’ve raised it, but happy to hear others are eager to have the option too, and that it will be available in the near future.
Yes, the wildcard feature to exclude, by which I assume we will be able to add partial locations to the source, for example:
/wp-content/uploads/theme-name/cache/general-1a4b9c6.css
the file name of this file changes every time there is a change to the styles that are built using a proprietary template builder/layout editor.
Each time a change is made, it’s saved dynamically to the database, after which a new cached version of the static file is generated, and the string changes (bit more to it than this, but that’s the crux of it)..
So it might become:
/general-1234abcd.css
Normally this wouldn’t be an issue, but this theme actually produces a live view of any changes made before they are saved (inside an iFrame), so if the current version of the styles is being served from a combined version, then the changes made to the dynamic stylesheet breaks things on save because FV will slurp that in too and serve a mixed bag.
This means that we also have to flush and disable FV every time while working on the site, and re-renable it after all the pre-cached theme styles have been generated.
We can’t exclude the file generically because the file name is a randomly generated string, so we also lose half of the entire power of FV.
However if we could exclude the files with a wildcard, it would solve that problem (it’s a horrible theme, but it is what I have to work with)
I’m assuming that once the wildcard functionality is added, we will be able to add the address and partial file name so that FV will read up to the point until the wildcard char is reached, and will then give that file the cold shoulder because it is such fickle thing ??
Something like this:
/wp-content/uploads/theme-name/cache/general*
Thanks, sorry for the waffle, I got carried away..