Quote:
Originally Posted by DementedMindz
here is my screen shot so far of what i have going on... just tryin to figure out the admin table now
|
Patience, you are almost there ...

First segment of code is ok, but try this instead.
Find:
Code:
$ms_output .= ' <span class="smallfont">Page generated in ' . $total_time . ' seconds (' . $php_percent . ' - ' . $sql_percent . ') with ' . $query_count . ' queries</span>' . "\n";
Replace it with:
Code:
$ms_output .= 'Page generated in ' . $total_time . ' seconds (' . $php_percent . ' - ' . $sql_percent . ') with ' . $query_count . ' queries<br />';
Next, find:
Code:
$ms_output .= '<tr align="' . $stylevar['right'] . '">' . "\n";
$ms_output .= ' <td class="alt1"' . iif($show['quickchooser'] OR $show['languagechooser'], ' colspan="' . $colspan . '"') . '>' . "\n";
$ms_output .= ' <span class="smallfont">' . $memory_status . $debug_status . $gzip_status . $server_status . $templates_status . '</span>' . "\n";
$ms_output .= ' </td>' . "\n";
$ms_output .= '</tr>' . "\n";
Replace it with:
Code:
$ms_output .= $memory_status . $debug_status . $gzip_status . $server_status . $templates_status;
Then, use this code in your footer template:
Code:
$vbphrase[powered_by_vbulletin]<if condition="$show['microstats']"><br />
{microstats}</if>