User Account Creation Page is Blank, Strange Code Inserted - Joomla! Forum - community, help and support
greetings, i'm using joomla 2.5.8. noticed user account creation page on frontend (/component/users) blank. when view source, code there, 1 interesting addition.
check out image of sourcecode: http://i.imgur.com/ahxwk.png
notice line 18? it's hiding whole page. new users can't register. existing users can log in though. none of other pages on site affected can tell.
i can't figure out code snippet on line 18 coming from. don't think it's template. i'm using beez_20 template minor modifications color schemes , images.
please help! thank you.
note: ie10 appears ignore line, show page. other browsers such firefox , chrome obey line , hide whole page.
check out image of sourcecode: http://i.imgur.com/ahxwk.png
notice line 18? it's hiding whole page. new users can't register. existing users can log in though. none of other pages on site affected can tell.
i can't figure out code snippet on line 18 coming from. don't think it's template. i'm using beez_20 template minor modifications color schemes , images.
please help! thank you.
note: ie10 appears ignore line, show page. other browsers such firefox , chrome obey line , hide whole page.
eviltelephone wrote:greetings, i'm using joomla 2.5.8. noticed user account creation page on frontend (/component/users) blank. when view source, code there, 1 interesting addition.
check out image of sourcecode: http://i.imgur.com/ahxwk.png
notice line 18? it's hiding whole page. new users can't register. existing users can log in though. none of other pages on site affected can tell.
i can't figure out code snippet on line 18 coming from. don't think it's template. i'm using beez_20 template minor modifications color schemes , images.
please help! thank you.
note: ie10 appears ignore line, show page. other browsers such firefox , chrome obey line , hide whole page.
it can come plugin, module, component or template, need grep through whole joomla source find addstyledeclaration.
code: select all
cd joomla root folder
grep -ir 'addstyledeclaration' *
code: select all
$doc =& jfactory::getdocument();
$style = 'html {display:none}';
$doc->addstyledeclaration($style);
Comments
Post a Comment