boldmanwinter2 on "[Plugin: Autoptimize] Never posted before - EVER...
Optimize JavaScript Code? yes Add try-catch wrapping? yes checked these boxes, disabled the wp super minify for JS and recvd error Fatal error: Unknown: Cannot use output buffering in output buffering...
View Articlefunsail on "[Plugin: Autoptimize] Moving to top lvl"
I want to serve from http://site.com/css/xxx.css instead of in wp-content Can I use define('AUTOPTIMIZE_CACHE_CHILD_DIR','/'); define( 'AUTOPTIMIZE_WP_CONTENT_NAME','/css' ); and trick it?...
View ArticleNoahj Champion on "[Plugin: Autoptimize] Moving to top lvl"
Hi funsail, I'm not the author, but you should always try looking through the previous support threads first to see if you're question is answered already. I asked this question recently. You should be...
View Articlefunsail on "[Plugin: Autoptimize] Changing the wp-content path to top level"
That looks very complex. Why not make AUTOPTIMIZE_CACHE_DIR a setting? The url/content/wp defines are very complex now I'll break something. AUTOPTIMIZE_CACHE_URL gets overwritten with...
View ArticleFrank Goossens on "[Plugin: Autoptimize] Changing the wp-content path to top...
Hi funsail; Creating a settings-page requires finding the right balance between adding enough options and keeping it light. Hence those all that are considered as important to all users are on the...
View ArticleFrank Goossens on "[Plugin: Autoptimize] Moving to top lvl"
breaking out of wp-content is (currently) not possible by default, more info in the thread Noahj linked to. hope this helps, frank
View ArticleCalou13 on "[Plugin: Autoptimize] Auto optimize conflicting with SSL"
Hi, 1st of all thanks for the great plugin. However it seems if enabled, Autoptimize seems to conflict with ssl encryptment. Firefox and Chrome (not tested with other browsers) give me the message:...
View ArticleFrank Goossens on "[Plugin: Autoptimize] Auto optimize conflicting with SSL"
That should work actually, can you provide me with a link (here or in a mail to futtta-at-gmail-dot-com) for me to have a quick look? frank
View ArticleCalou13 on "[Plugin: Autoptimize] Auto optimize conflicting with SSL"
Thank you for your immediate reply. It was another plugin that caused the trouble.
View Articleilya.uglava on "[Plugin: Autoptimize] Heed some help"
Dear Frank, first of all, thanks for a great plugin. I am not a master when it comes to all the programming and php/java/css stuff, so it helped a lot. At least I didn't worry about screwing everything...
View ArticleFrank Goossens on "[Plugin: Autoptimize] Heed some help"
Well, I love Prague, so ... :-) 1. I would consider looking into "inline all CSS" (or "inline & defer", but given your CSS isn't huge and that "inline & defer" is pretty advanced stuff, I would...
View Articleilya.uglava on "[Plugin: Autoptimize] Heed some help"
Thanks! Will try these options and see what comes out... :)
View Articlewinnephew on "[Plugin: Autoptimize] @import Question"
Hi! First of all let me say I love your plugin, really great work! I just have one question: I noticed that autoptimize also improved my @import rating (makes sense if its just that one css now)....
View Articleat2oo1 on "[Plugin: Autoptimize] css files not minified?"
Hi, on my site http://raspberry.tips some files are not minified and put together. http://static.raspberry.tips/jquery-ui.css And some other ressources (maybe because they´ve got a query string)?! How...
View ArticleFrank Goossens on "[Plugin: Autoptimize] css files not minified?"
hi at2001; the reason is AO only aggregates if the domain matches. as static.raspberry.tips <> raspberry.tips <> cdn.raspberry.tips, the files on static and cdn are not aggregated. hope...
View ArticleFrank Goossens on "[Plugin: Autoptimize] @import Question"
If I understand correctly, you're asking if AO can move @imports for external files in the original CSS out of the aggregated CSS and into the head as link-elements instead? This currently is not...
View Articlewinnephew on "[Plugin: Autoptimize] @import Question"
Yes, that's what i wanted to say. It does indeed have a performance-impact because @imported files are downloaded sequentially. So the browser has to first download der AO-css-file and will then learn...
View ArticleFrank Goossens on "[Plugin: Autoptimize] @import Question"
For now, leaving those imports out out could already be accomplished using the "autoptimize_css_after_minify" filter from the AO-api (better switch to the pre-1.9.3 version though, as I moved that...
View Articlewinnephew on "[Plugin: Autoptimize] @import Question"
Thanks for the tip to you, too. I'll try my luck with the filter :)
View Articlewinnephew on "[Plugin: Autoptimize] @import Question"
Just in case someone else finds it useful add this to your functions.php to delete the imports: function autoptimize_delete_imports( $css ) { $css = preg_replace("/@import\s([^>]*);/","",$css);...
View Article