any good way to enable login and register function at pixellove template?
I try to do search,but no result about this template.
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<div id="gk-nav">
<div id="gk-nav-wrap" class="main clearfix">
<?php if ($this->getParam('logoType')!=='none'): ?>
<?php if ($this->getParam('logoType')=='image'): ?>
<h1 class="logo">
<a href="index.php" title="<?php echo $this->sitename(); ?>"><?php echo $this->sitename(); ?></a>
</h1>
<?php elseif($this->getParam('logoType')=='text') : ?>
<h1 class="logo text">
<a href="index.php" title="<?php echo $this->sitename(); ?>"><?php echo GK_LOGO; ?></a>
<small class="site-slogan"><?php echo GK_SLOGAN;?></small>
</h1>
<?php endif; ?>
<?php endif; ?>
<?php if (($this->getParam('menu_enabled', 1) && $gkmenu = $this->loadMenu())) : ?>
<div id="gk-mainnav">
<?php
$gkmenu->genMenu($this->getParam('startlevel',0), $this->getParam('endlevel',-1));
?>
</div>
<?php endif; ?>
</div>
</div>
