How to remove wellcome record when a user login to your site
// 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' );
}
if( !$config->get( 'badges.enabled' ) )
{
return;
}
return;