Hi, could you be more specifics.
You want to see all module positions? If yes , Go to TEMPLATE MANAGER --> OPTIONS (icon) and enable to show it. Then use
http://your-webpage.com/?tp=1 - to see them all
(2) If you want to make changes in registration & login links, go here:
templates/gk_game_magazine/layouts/blocks/logo.phpThere you will find:
- Code: Select all
<div id="gkButtons">
<div>
<?php if(GK_LOGIN) : ?>
<a href="<?php echo $this->URLbase(); ?>index.php?option=com_users&view=login" id="btnLogin"><span><?php echo $btn_login_text; ?></span></a>
<?php endif; ?>
<?php if(GK_REGISTER) : ?>
<a href="<?php echo $this->URLbase(); ?>index.php?option=com_users&view=registration" id="btnRegister"><span><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></span></a>
<?php endif; ?>
</div>
</div>
Then Make A Change!