hapus aja bagian $body = theme('menu_top'); di file common/theme.php
Code:
.....
function theme_page($title, $content) {
$body = theme('menu_top');
.....Code:
.....
function theme_google_analytics() {
global $GA_ACCOUNT;
if (!$GA_ACCOUNT) return '';
$googleAnalyticsImageUrl = googleAnalyticsGetImageUrl();
return "<img src='{$googleAnalyticsImageUrl}' />";
}
function theme_mikarai() {
$out = '<div class="menu"><center><a href="">Home</a> | <a href="/replies">Replies</a> | <a href="/search">Search</a> | <a href="/directs">Directs</a></div>';
return $out;
} Code:
.....
function theme_page($title, $content) {
if (user_is_authenticated()) {
$body = theme('mikarai');
}
$body .= $content;
.....
.....
0 comments:
Post a Comment