Open your functions.php in the inc folder and find this on line 849
PHP Code:
$template .= "<div style='position: fixed; bottom: 0; left: 0; color: white; font-size: 10px; width: 380px; '>A total of {$GLOBALS['numberofqueries']} queries were used in this page. They were: {$GLOBALS['queries']}</div>";
And comment out that line, so it will become like this
PHP Code:
// $template .= "<div style='position: fixed; bottom: 0; left: 0; color: white; font-size: 10px; width: 380px; '>A total of {$GLOBALS['numberofqueries']} queries were used in this page. They were: {$GLOBALS['queries']}</div>";
For the URL, just do the same thing on line 85
PHP Code:
$data = htmlentities($data);
change it to
PHP Code:
// $data = htmlentities($data);