By Alejandro Ferrari on Sunday, 15 December 2013
Posted in General Issues
Replies 5
Likes 0
Views 1.5K
Votes 0
Hey guys,

Im using the "Dashboard" of main page for easysocial (instead the Unity). Also it is the "home" of the site. The problem is that each Guest is getting the "login message" each time that you go to the "home" of the site.

Screenshoot here: http://screencast.com/t/NXdEm19uHU

And you can see it live here: tupokerclub.net

The question is... There is a way to dont show that message there?

Thanks in advance.
Hi,

EasySocial is a "user based" component, and as such, we've enforced guest to login first before going to the Dashboard.
·
Monday, 16 December 2013 11:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jason,

Thanks for your reply.

Thats mean "no way" to dont show that "login message" for guests in dashboard? Maybe modifing some file? I really need use the dashboard how home page on my web site :S

I understand your point, but... configurating from backend you can let "guests" watch profiles, albums, etc (http://screencast.com/t/WDPcg6BtpXc7) and there no "login message".

I mean, the dashboard for guests have their own login and register module, so probably it dont need a "login message"

I will appreciate it if you guys please can bring me a solution for that xD
·
Monday, 16 December 2013 11:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Alejandro,

Try this. Open the file 'JOOMLA/administrator/components/com_easysocial/includes/foundry.php' and locate below code at line 873:

$info->set( $message );


and replace the above code with following:


if( JRequest::getCmd( 'view' ) != 'dashboard' )
{
$info->set( $message );
}



Let me know if this work for you or not
Have a nice day
Sam
·
Monday, 16 December 2013 12:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Nice! It worked!

Great support like always!

Have a nice weekend!
·
Monday, 16 December 2013 12:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Alejandro,

You are most welcome. Glad to hear your issue now resolved
Have a nice day
Sam
·
Monday, 16 December 2013 13:19
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post