By Andregh on Monday, 20 January 2014
Posted in General Issues
Replies 7
Likes 0
Views 1.2K
Votes 0
How to remove wellcome record when a user login to your site
Hi,

Go to EasySocial -> Settings -> Users -> Add stream when login and turn off the option.
·
Monday, 20 January 2014 20:30
·
0 Likes
·
0 Votes
·
0 Comments
·
thank you )
·
Monday, 20 January 2014 20:42
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Andregh, glad that your issues are resolved now.
·
Monday, 20 January 2014 23:52
·
0 Likes
·
0 Votes
·
0 Comments
·
How to turn this activity stream?
·
Tuesday, 28 January 2014 01:11
·
0 Likes
·
0 Votes
·
0 Comments
·
Do you mean you want to switch it off? Currently you can't but in 1.2, this will be possible. At the meantime, what you can do is to edit the following files,

/media/com_easysocial/apps/user/profiles/profiles.php and remove the codes below,


// When user updates their profile.
if( $item->verb == 'update' )
{
$actor = $item->actor;

// Get the term to be displayed
$term = $actor->getFieldValue( 'GENDER' );

$this->set( 'term' , $term );

// The stream should display in mini mode
$item->display = SOCIAL_STREAM_DISPLAY_MINI;
$item->title = parent::display( 'streams/' . $item->verb . '.title' );
}


/media/com_easysocial/apps/user/badges/badges.php and locate the codes below,


if( !$config->get( 'badges.enabled' ) )
{
return;
}


Replace it with,


return;
·
Tuesday, 28 January 2014 02:54
·
0 Likes
·
0 Votes
·
0 Comments
·
How to remove it in new 1.24 JS
·
Monday, 31 March 2014 15:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Andregh,

What activities are these? User logins? You can disable it in the "Users - Users" app in the application listing at the back end of EasySocial
·
Monday, 31 March 2014 17:50
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post