When turning on Minify HTML under Performance, the Gtranslate block breaks. Normally only one dropdown should be shown (without the Powered by Google text).
I have uploaded a screenshot showing this. Any help would be greatly appreciated. Thanks.
| Comment | File | Size | Author |
|---|---|---|---|
| gtranslate.PNG | 5.01 KB | nwom |
Comments
Comment #2
nwom commentedComment #3
slydevil commentedThis error is due to stripping out comments in CSS:
The result is this:
<style type="text/css"></style>This module should not be removing html comments within the
has a specific purpose - https://www.w3.org/TR/CSS21/syndata.html#commentsComment #4
slydevil commentedWhen stripping out the style tags, this module is using the wrong regex. Introduced here: https://cgit.drupalcode.org/minifyhtml/commit/minifyhtml.module?h=7.x-1....
Comment #7
slydevil commentedComment #9
slydevil commentedComment #10
nwom commentedThank you so much for this!