By William Matson on Thursday, 14 May 2015
Posted in General Issues
Likes 0
Views 2.9K
Votes 0
I need to temporarily hide the registration button. How do I do this?
Hello William

You can hide the registration button by comment or remove these code in ...\components\com_easydiscuss\themes\simplistic\form.reply.login.php

		<div class="span7">
<div class="media">
<div class="media-object pull-left">
<img src="<?php echo JURI::root();?>components/com_easydiscuss/themes/simplistic/images/icon-locked.png" alt="<?php echo JText::_( 'COM_EASYDISCUSS_LOGIN_IMAGE' , true );?>" />
</div>
<div class="media-body small">
<h4><?php echo JText::_( 'COM_EASYDISCUSS_PLEASE_LOGIN_TO_REPLY_TITLE' );?></h4>
<p><?php echo JText::_( 'COM_EASYDISCUSS_PLEASE_LOGIN_TO_REPLY_INFO' );?></p>
<a href="<?php echo DiscussHelper::getRegistrationLink();?>" class="btn btn-success mt-10"><?php echo JText::_( 'COM_EASYDISCUSS_REGISTER_HERE' );?></a>
</div>
</div>

</div>


Hope this help
·
Thursday, 14 May 2015 10:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you. That worked.
·
Thursday, 14 May 2015 15:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi William.

You're welcome. Have a nice day
·
Thursday, 14 May 2015 15:41
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post