By William Matson on Thursday, 29 May 2014
Posted in General Issues
Likes 0
Views 1.1K
Votes 0
The Login Layout page has the "Login to your account" frame on the left and the "Don't have an account" frame on the right. I only want to display the "Login to your account" frame.

Is there a setting that disables this? If no, which template do I need to modify?
Hello William,

I am sorry for the late reply.
If I understand you correctly, you want to disable/remove registration box in the right hand? Screenshot: http://screencast.com/t/oaZ3uW65sPYc . There are 2 ways to doing this.
1. Disable registration in the backend. So this registration box will not be displayed but new user cannot register to the site. Configure it here: Components > EasySocial > Settings > Registration > Allow new user sign-ups = No.

2. Hide the registration using css. You can use this css and put in your current Joomla template and see how it goes.

div#fd .col-md-6.register-column {
display: none;
}


If you have anymore question, please don't hesitate to ask us.
Hope this will help.
Thanks.
·
Thursday, 29 May 2014 10:30
·
0 Likes
·
0 Votes
·
0 Comments
·
My apologies that I did not reply. Your guidance worked fine by adding the code to a custom CSS file. I recommend that ES include a means to easily toggle off the mini-registration form, or to offer a login-only page.

Thanks.
·
Tuesday, 24 March 2015 13:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello William,

You are most welcome and thanks for the heads up on this issue
·
Tuesday, 24 March 2015 16:39
·
0 Likes
·
0 Votes
·
0 Comments
·
hello,

Did this setting ever get added?

I do not want the "login to your account" and "Don't have an account" boxes displayed at the top of the page.
I removed "don't have and account" using the CSS snippet mentioned in Title

but I can't see the addition of the new setting mentioned here that would remove the other box?

Thanks,
·
Wednesday, 20 July 2016 02:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Dale,

Correct me if I am wrong, do you want to remove "Login to your account" box as well?
You can try use the css code below and see how it goes ?
div#fd .es-login-box.es-responsive.wide.w960.w768 {
display: none !important;
}
·
Wednesday, 20 July 2016 17:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello, is there an option to disable login/registration form in the dashboard page ?
·
Friday, 11 November 2016 22:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Unfortunately we do not have an option to disable it, but you remove the html code from this file -> JoomlaFolder/components/com_easysocial/themes/wireframe/dashboard/guests/default.php


<div>
<?php echo $this->html('html.login', $return); ?>
</div>



Then override this file into your current template file location -> JoomlaFolder/templates/YourCurrentTemplate/html/com_easysocial/dashboard/guests/default.php
·
Saturday, 12 November 2016 01:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Unfortunately we do not have an option to disable it, but you remove the html code from this file -> JoomlaFolder/components/com_easysocial/themes/wireframe/dashboard/guests/default.php


<div>
<?php echo $this->html('html.login', $return); ?>
</div>



Then override this file into your current template file location -> JoomlaFolder/templates/YourCurrentTemplate/html/com_easysocial/dashboard/guests/default.php


where do i have to look when i want to modify the html code from this "html.login"!?
·
Sunday, 13 November 2016 00:17
·
0 Likes
·
0 Votes
·
0 Comments
·
The file is in /components/com_easysocial/themes/wireframe/helpers/html/login.php

Please start a new thread instead if you still have any questions.
·
Sunday, 13 November 2016 00:49
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post