The following bit of CSS breaks the plugin. For whatever reason, if I insert a dummy class in between the animations it works fine…
If you delete fadein animation blocks, then fadeout will work. It also works if you delete fadeout and leave fadein. If you have both though (without the .vex-fake separator) then no CSS renders at all and it breaks entirely:
@keyframes vex-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-webkit-keyframes vex-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes vex-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-ms-keyframes vex-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-o-keyframes vex-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
.vex-fake {
/* vex breaks the CSS minify plugin for some reason
* when both of these animation rules above and below
* are present. For some reason, breaking them apart
* with this fake css block fixes the issue... */
display: block;
}
@keyframes vex-fadeout {
0% { opacity: 1; }
100% { opacity: 0; }
}
@-webkit-keyframes vex-fadeout {
0% { opacity: 1; }
100% { opacity: 0; }
}
@-moz-keyframes vex-fadeout {
0% { opacity: 1; }
100% { opacity: 0; }
}
@-ms-keyframes vex-fadeout {
0% { opacity: 1; }
100% { opacity: 0; }
}
@-o-keyframes vex-fadeout {
0% { opacity: 1; }
100% { opacity: 0; }
}
]]>
Hi,
I have a the following stylesheet link in my source code:
<link rel=’stylesheet’ id=’open-sans-css’ href=’//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext’ type=’text/css’ media=’all’ />
I was wondering, is there any way to get it to be handled by Simple Minify? If not, could you please add it?
]]>Hello,
I’ve found an issue with the plugin.
The plugin messes up if one uses the suggest.min.js library (included with wordpress). simpleMinify keeps on putting it above jquery, although it depends on jquery.
I checked the other plugin’s code and it uses wp_enqueue_script correctly AFAICS.
To see the problem, try using this plugin:
https://www.ads-software.com/support/plugin/wp-search-suggest
Thank you,
a.
]]>Installed your plug-in and it instantly messed up our entire website.
Please help me figure out how to return the functionality of our site.
It is here: https://www.desertclinics.com
Is it because all of the JS and CSS were combined? How can I reverse whatever your plug-in did?
Thanks for your help.
]]>Even though I checked the option to include external CSS and JS in settings page, the plugin is not compressing them. In my case, I’m including fonts.googleapis.com and ajax.googleapis.com
]]>