In the XHTML it is wrapped in which is generated from template.php. I don't know enough about this to sort it.
Luke.
| Comment | File | Size | Author |
|---|---|---|---|
| Screenshot-Archeia | Geek Gadgets 02 - 08 - 2007.png | 127.67 KB | Lucretia9 |
In the XHTML it is wrapped in which is generated from template.php. I don't know enough about this to sort it.
Luke.
| Comment | File | Size | Author |
|---|---|---|---|
| Screenshot-Archeia | Geek Gadgets 02 - 08 - 2007.png | 127.67 KB | Lucretia9 |
Comments
Comment #1
Lucretia9 commentedIn fact, changing the first && to an || on line 560 of template.php fixes the problem, whether or not this works for all cases, I don't know:
if (isset($element['#attributes']['style']) || (stristr($element['#attributes']['style'], 'display: none;') || stristr($element['#attributes']['class'], 'fivestar-submit'))) {
rather than:
if (isset($element['#attributes']['style']) && (stristr($element['#attributes']['style'], 'display: none;') || stristr($element['#attributes']['class'], 'fivestar-submit'))) {
Comment #2
jeremycaldwell commentedComment #4
dpatte commentedI just upgraded to version 2.0 from 1.4 and also see this problem. Is changing template.php still the best solution?
Thanks
Comment #5
jeremycaldwell commentedYes changing the template.php is still the way to go here.