1. Edit functions.php located in inc folder
2. Find
3. Replace it with
2. Find
PHP Code:
if($diff <= 60)
{
// Less than a minute
$relative['prefix'] = $lang->rel_less_than;
}
3. Replace it with
PHP Code:
if($diff <= 60)
{
// seconds ago
if($diff == 1) {
return $diff . ' second ago';
}
return $diff . ' seconds ago';
}