Still visible the Facebook Login

Business template for Joomla 3 and 2.5 ideal to create blog or personal website.
GK User
Wed Sep 05, 2012 11:47 pm
Hi,

I already turned off the Facebook Login at template The Real Design, but the button are still showing at login module. How can I solve that? Please help me.

Thanks

Template Ver. 2.11
User avatar
Junior Boarder

GK User
Thu Sep 06, 2012 12:38 am
Hi

Please open the following file ../templates/gk_the_real_design/html/mod_login/default.php and find this lines:

Code: Select all
<gavern:fblogin>
<div id="gkFBLogin">
   <h4><?php echo JText::_('TPL_GK_LANG_FB_USER'); ?></h4>
   <p><?php echo JText::_('TPL_GK_LANG_FB_INFO'); ?></p>
   
   <span id="fb-auth"><small>fb icon</small><?php echo JText::_('TPL_GK_LANG_FB_LOGIN_TEXT'); ?></span>
</div>
</gavern:fblogin>


Erase it.

Next find this line:

Code: Select all
<li>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
</li>



replace it with:

Code: Select all
<li>
<gavern:fblogin> <span id="fb-auth"><small>fb icon</small><?php echo JText::_('TPL_GK_LANG_FB_LOGIN_TEXT'); ?></span> </gavern:fblogin>
</li>
<li>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
</li>


It should work now ;)

Cheers
User avatar
Platinum Boarder

GK User
Thu Sep 06, 2012 12:49 am
Thank you Seichinha.

It worked perfect!

Tks

Seichinha wrote:Hi

Please open the following file ../templates/gk_the_real_design/html/mod_login/default.php and find this lines:

Code: Select all
<gavern:fblogin>
<div id="gkFBLogin">
   <h4><?php echo JText::_('TPL_GK_LANG_FB_USER'); ?></h4>
   <p><?php echo JText::_('TPL_GK_LANG_FB_INFO'); ?></p>
   
   <span id="fb-auth"><small>fb icon</small><?php echo JText::_('TPL_GK_LANG_FB_LOGIN_TEXT'); ?></span>
</div>
</gavern:fblogin>


Erase it.

Next find this line:

Code: Select all
<li>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
</li>



replace it with:

Code: Select all
<li>
<gavern:fblogin> <span id="fb-auth"><small>fb icon</small><?php echo JText::_('TPL_GK_LANG_FB_LOGIN_TEXT'); ?></span> </gavern:fblogin>
</li>
<li>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
</li>


It should work now ;)

Cheers
User avatar
Junior Boarder


cron