As I don’t have a URL to check I can only guess, but might you have ticked that “inline & defer”-option without providing critical (aka above the fold) CSS?
frank
OK, two things;
* you indeed do seem to be doing “inline & defer”, better untick that option (or provide the correct “above the fold”-CSS, you can try to automate that using the “critical CSS power-up”).
* your theme seems not to be outputting a title tag, which AO uses to inject the optimized CSS. either add the title-tag or tell AO to inject the CSS elsewhere (see code snippet below)
add_filter('autoptimize_filter_css_replacetag','dee_web_css_replacetag',10,1);
function dee_web_css_replacetag($replacetag) {
return array("<head>","after");
}
hope this helps,
frank
ho… your right, my title is not there…
thanks, everything is fine now