How can you remove The register button ?

GK User
Wed Sep 28, 2011 12:29 pm
Hello everybody. I want to remove the registration button on the top, but just the registration buton and not the login button

Is it possible ?

Thanks a lot :D
User avatar
Senior Boarder

GK User
Thu Sep 29, 2011 6:53 am
Just disable GK Register module from Joomla Admin Modules list...
User avatar
Platinum Boarder

GK User
Thu Sep 29, 2011 7:20 am
10x

buT I want to delete definitely the register button
User avatar
Senior Boarder

GK User
Thu Sep 29, 2011 7:39 am
If its still showing edit as below. So after below change , if you disable login module , login will disappear , if you disable register module register button will disappear.

This mod is for Joomla 1.5 version...

Find Line 28 to 35 in "templatesgk_twn2layoutsblockstop.php"
which is
Code: Select all
<?php if(GK_REGISTER || GK_LOGIN) : ?>
<div id="gk-buttons">
    <div>
   <?php if(GK_LOGIN) : ?>
   <a href="<?php echo $this->baseurl(); ?>index.php?option=com_user&view=login" id="btn_login"><span><?php echo $btn_login_text; ?></span></a><?php endif; ?><?php if($userID == 0) : ?><a href="<?php echo $this->baseurl(); ?>index.php?option=com_user&view=register" id="btn_register"><span><?php echo JText::_('GK_REGISTER'); ?></span></a><?php endif; ?>
    </div>
</div>
<?php endif; ?>


Change it to below:
Code: Select all
<?php if(GK_REGISTER || GK_LOGIN) : ?>
    <div id="gk-buttons">
        <div>
            <?php if(GK_LOGIN) : ?>
            <a href="<?php echo $this->baseurl(); ?>index.php?option=com_users&view=login" id="btn_login"><span><?php echo $btn_login_text; ?></span></a>
            <?php endif; ?>
            <?php if(GK_REGISTER) : ?>
            <a href="<?php echo $this->baseurl(); ?>index.php?option=com_user&view=register" id="btnRegister"><span><?php echo JText::_('GK_REGISTER'); ?></span></a>
            <?php endif; ?>
        </div>
    </div>
<?php endif; ?>
User avatar
Platinum Boarder

GK User
Mon Oct 03, 2011 5:44 pm
hey man ! :D

thanks a lot! You really save me!
User avatar
Senior Boarder

GK User
Tue Oct 04, 2011 7:52 am
No problem at all...
User avatar
Platinum Boarder


cron