By Jim Gribble on Thursday, 06 March 2014
Posted in General
Replies 3
Likes 0
Views 1.2K
Votes 0
We have Easyblog, EasyDiscuss and EasySocial all working together in harmony. Along with several other big programs. Cool. But it seems like everybody includes registration as an option. But this isn't always good because often we route all registrations through a third-party membership component. We can't have all these disparate registration points. At the new huntingplanit.com, its' really an issue with one click which can be seen here: https://huntingplanit.com/social-network-frontpage. It is what non-registered users see when they try to enter the social network from the public front end. At right on that page is button that says Register Now! But the click leads to nowhere - just a message saying "Sorry, but there are no profiles created on the site yet." I would like to either delete that button or direct it to our centralized registration page. Delete is preferred.
Sorry that I couldn't find a similar case in searching the forum.
I am capable of making the php edits if you just show me where and what.
Thanks!
-Jim G.
Hello Jim Gribble,

Sorry for late reply to this,
You can remove the code from this file JoomlaFolder\components\com_easysocial\themes\wireframe\unity\default.php
LINE 68 until 80


<?php if( $this->config->get( 'registrations.enabled' ) ){ ?>
<div class="span6 register-column">
<div class="register-wrap">
<h3><?php echo JText::_( 'COM_EASYSOCIAL_LOGIN_NO_ACCOUNT' );?></h3>
<p class="center mb-20">
<?php echo JText::_( 'COM_EASYSOCIAL_LOGIN_REGISTER_NOW' );?>
</p>
<a class="btn btn-es-primary btn-large btn-block" href="<?php echo FRoute::registration();?>">
<?php echo JText::_( 'COM_EASYSOCIAL_LOGIN_REGISTER_NOW_BUTTON' );?>
</a>
</div>
</div>
<?php } ?>

hope this help.
·
Thursday, 06 March 2014 11:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Great, thanks! Problem solved.
·
Thursday, 06 March 2014 11:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jim Gribble,

You're welcome, glad to heard your issues resolved.
·
Thursday, 06 March 2014 11:50
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post