I know I'm pushing a bit, but I'm going all out on the Music City template. It has some really nice popups for the login and register modules. I have a huge amount of content to put on my site but I dont want it to load all at the same time so I need some modules to pop up by link and image.
I have looked at the code and variables and it seems some are missing, hidden in the bowels of JS. So I'm looking for any pointers I can get from Gavick's crew or members of the community.
<?php if(GK_REGISTER || GK_LOGIN) : ?>
<div id="gk-buttons">
<?php if($userID == 0) : ?>
<a href="<?php echo $this->baseurl(); ?>index.php?option=com_user&view=register" id="btn_register"><?php echo JText::_('GK_REGISTER'); ?></a>
<?php endif; ?>
<a href="<?php echo $this->baseurl(); ?>index.php?option=com_user&view=login" id="btn_login"><?php echo $btn_login_text; ?></a>
</div>
<?php endif; ?>
I see the variables GK_REGISTER and GK_LOGIN, I know the text is being called from the language ini on the links. But i just dont know how this is creating a popup.