Hi,
I have done nice site for myself but on my pages appears orange box where is written admin:myname ???
how can i make it vanish ?
admin: box
hi
this Box only is shown while you are logged in - and only on your Browser.
A Visitor of your Site will not see it.
The Code for this is in index.php
this Box only is shown while you are logged in - and only on your Browser.
A Visitor of your Site will not see it.
The Code for this is in index.php
Code: Select all
if(VISIBLE_MODE == 1 || VISIBLE_MODE == 2) {
$content['page_end'] = '<div id="VisualMODE" style="position:absolute;left:5px;bottom:5px;padding:5px;z-index:1;background-color:#FF3300;color:#FFFFFF;border:1px solid #000000;">';
$content['page_end'] .= VISIBLE_MODE == 1 ? 'user: ' : 'admin: ';
$content['page_end'] .= html_specialchars($_SESSION['wcs_user']);
$content['page_end'] .= "</div>\n</body>\n</html>";
} else {
$content['page_end'] = "</body>\n</html>";
}