1. Find plugins/myhome-core/includes/estates/Estate.php


2. Backup the file


3. Find get_name function


public function get_name() {
return $this->post->post_title;
}

4. Change it (15 is a limit of a words)


public function get_name() {
$text = $this->post->post_title;
$limit = 15;

if (str_word_count($text, 0) > $limit) {
$words = str_word_count($text, 2);
$pos = array_keys($words);
$text = substr($text, 0, $pos[$limit]) . '...';
}
return $text;
}