Hi
I would like to remove the register button from the popup login as I have decided to disable user registration.
Where would I go about doing this?
Regards

<?php if($userID == 0) : ?>
<a class="button" href="<?php echo $this->API->URLbase(); ?>index.php?option=com_users&view=registration"><?php echo JText::_('TPL_GK_LANG_REGISTER_POPUP'); ?></a>
<?php endif; ?>
<?php
$usersConfig = JComponentHelper::getParams('com_users');
if ($usersConfig->get('allowUserRegistration')) : ?>
<?php if($userID == 0) : ?>
<a class="button" href="<?php echo $this->API->URLbase(); ?>index.php?option=com_users&view=registration"><?php echo JText::_('TPL_GK_LANG_REGISTER_POPUP'); ?></a>
<?php endif; ?>
<?php endif; ?>
