I would like to add a modulposition/place some information beside the login/register button (see picture). I already read the documentation in the support section:
- Code: Select all
<body<?php echo $tpl_page_suffix; ?>>
<?php if($this->browser->get('browser') == 'ie6' && $this->getParam('ie6bar', '1') == 1) : ?>
<div id="gkInfobar"><a href="http://browsehappy.com"><?php echo JText::_('TPL_GK_GAVERN_IE6_BAR'); ?></a></div>
<?php endif; ?>
<?php $this->messages('message-position-1'); ?>
<?php if($this->modules(‘social’)) : ?>
<div id="social">
<jdoc:include type=”modules” name=”social” style=”<?php echo $this->module_styles['social']; ?>” />
</div>
<?php endif; ?>
<div id="gkBg">
<div id="gkWrap1">
<?php $this->loadBlock('nav'); ?>
<?php $this->loadBlock('header'); ?>
</div>
</div>
I added the code ("social") in the templates/gk_finance_business/layouts/blocks/nav.php
I can choose my new modul position from the module menu, but it will not show up on my page
Could you give me a hint?
