Reviewed & tested by the community
Project:
IE CSS Optimizer
Version:
6.x-1.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Oct 2010 at 01:55 UTC
Updated:
25 May 2012 at 12:32 UTC
Jump to comment: Most recent file
Comments
Comment #1
plousia commentedAny update on this? I'm looking at using this module on a site which also uses CTools, so it'd be great if this was worked out.
Comment #2
zed_den commentedI´ve got the same Problem... is there an update in progress?
Comment #3
plousia commentedThis blog post includes some code to put into template.php which apparently fixes the IE stylesheet limit. Since it runs after modules it should get around this problem.
Comment #4
henrijs.seso commentedit does, thanks for a link!
Comment #5
henrijs.seso commentedaaannnnd no, tip in link does not work since it adds back styles overriden in template .info file
Comment #6
henrijs.seso commentedOP - set module weight?
Comment #7
johnalbinI have ctools enabled on my d6 test system, but I'm not experiencing this issue.
However, its pretty trivial to make this module's preprocess_page hook run after ctool's.
Since I can't recreate the problem, please test this patch or checkout the 956416-ctools-incompatibility branch in Git. I won't add this to the module unless the patch is shown to fix the problem.
Comment #8
johnalbinAlso, I'd like to point out that you'd need to test 2 things.
1.) that the functionality of this module starts to work with the patch applied, and
2.) that the functionality of ctools isn't broken in any way with this patch. specifically, merlinofchaos said to check that CSS adding during AJAX operations continues to work.
Comment #9
Anclywen commentedPatch solved the problem.
In my case, the problem was not ctools module, but in seven template (exactly in function seven_page_preprocess().
It will work under assumption that the previously called modules will overwrite $vars['styles'] using drupal_get_css() function (which causes the need to alter the array $vars['css']).
I must confirm that patch does not affect on the seven template or block the ctools' ability to add new css file (checked on ctools_ajax_sample module).
Everything, seems to be ok. It's should be merged.
Comment #10
soulfroys#7 Works! Tks!