By Haim Barad on Sunday, 10 November 2013
Replies 2
Likes 0
Views 1.3K
Votes 0
I'm having some issues with finishing the migration to EasySocial from JomSocial.

1. Regarding the guest frontpage (Unity not logged in). I want to not display "What's going on in the community" and all the details below it (such as online users, recent users, etc). How do I turn this off (for guests).
2. I want to be able to display a graphic and some promotional text that's shown ONLY to guest (what JomSocial referred to as the hero header, etc).
3. I have JFBConnect 5.2.0 installed, but I can't get any of the social icons to display for the login/registration screen. How is this done.

I'm really close, but I can't get these last 3 working. I'll be happy to skype you backend credentials if it's quicker to help out.
Another additional issue. I had many member migrate from JomSocial without properly identifying their custom profile. Is there an easy way to move all these profiles into the custom profile? Is it as easy as changing some profile id in a mysql table?
·
Sunday, 10 November 2013 23:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Haim Barad,

I am sorry for the delay of this reply.

1. Regarding the guest frontpage (Unity not logged in). I want to not display "What's going on in the community" and all the details below it (such as online users, recent users, etc). How do I turn this off (for guests).


To hide the modules ( online users, recents users and etc ), you can configure these module the access to registered users only. As for the stream, currently there is no option to turn off the stream in unity page. Maybe you can try to edit the file JOOMLA/components/com_easysocial/views/unity/view.html.php and look for below code at line 61:

$stream->getPublicStream( SOCIAL_STREAM_GUEST_LIMIT, 0 );


and replace the above with following:


if( $my->id )
{
$stream->getPublicStream( SOCIAL_STREAM_GUEST_LIMIT, 0 );
}


2. I want to be able to display a graphic and some promotional text that's shown ONLY to guest (what JomSocial referred to as the hero header, etc).


I not too sure if i understand correctly the above or not. Do you mean you wanna banner in all EasySocial pages or only in EasySocial profile page? Currently EasySocial support the adsense app and if the user installed this app, they can actually display their ads in their profile page. Please advise.

3. I have JFBConnect 5.2.0 installed, but I can't get any of the social icons to display for the login/registration screen. How is this done.


May i know what kind of social icons you referring? Please advise.

Another additional issue. I had many member migrate from JomSocial without properly identifying their custom profile. Is there an easy way to move all these profiles into the custom profile? Is it as easy as changing some profile id in a mysql table?


In EasySocial backend under users listing page, you can actually switch the user's profile by select users from the listing and click the 'switch profile' from the top toolbar.

Hope this help and have a nice day
Sam
·
Tuesday, 12 November 2013 11:43
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post