Disable Login | PenguinMail [SOLVED]

GK User
Tue Oct 18, 2011 7:46 am
Hi guys, i am currently trying to disable the Login button from the front end of the site using the PenguinMail template. Any ideas?

Thanks.
User avatar
Fresh Boarder

GK User
Tue Oct 18, 2011 6:06 pm
If you are using joomla 1.5 version simple goto modules manager and look for module "signin" which is type "login" then disable it.

If you are using joomla 1.7 version

Find and Edit File: "templatesgk_penguinmaillayoutsblocksnav.php"
Line : 31 to 35 which is as below:
Code: Select all
   </div>
   
   <a href="<?php echo $this->URLbase(); ?>index.php?option=com_users&view=login" id="gkButtonLogin"><?php echo $btn_login_text; ?></a>
   
   <?php if( $this->modules('search') ): ?>

Change it as below
Code: Select all
   </div>

   <?php if( $this->modules('login') ): ?>
   <a href="<?php echo $this->URLbase(); ?>index.php?option=com_users&view=login" id="gkButtonLogin"><?php echo $btn_login_text; ?></a>
   <?php endif; ?>
   
   <?php if( $this->modules('search') ): ?>


Then again disable "signin" module from module manager...
User avatar
Platinum Boarder

GK User
Wed Oct 19, 2011 8:21 am
Thank you normanUK !
User avatar
Fresh Boarder

GK User
Wed Oct 19, 2011 8:34 am
No problem at all , if its working for you can you please change topic title to [SOLVED], thank you and see ya around...
User avatar
Platinum Boarder


cron