
Originally Posted by
Gunaxin
Without running Gravatar, how is the user supposed to easily get to their profile?
It's assumed that you'd be running some kind of avatar plugin, but if not, try this:
In your navigation.php template, change:
PHP Code:
<!-- Navigation Bar -->
<ul class="navigation">
<?php if ($h->currentUser->loggedIn) {
if($h->isActive('avatar')) {
$h->setAvatar($h->currentUser->id, 16);
echo $h->linkAvatar();
}
} ?>
to
PHP Code:
<!-- Navigation Bar -->
<ul class="navigation">
<?php if ($h->currentUser->loggedIn) {
echo "<li><a href='" . $h->url(array('page'=>'account')) . "'>" . $h->lang["main_user_theme_account"] . "</a></li>";
} ?>
Bookmarks