Can someone help me with the above issue. The headlines in the featured posts on the home page (bottom left) seem to have a Headline length restriction.
The headlines for these posts on the home page get truncated after a certain number of characters.
I’ve not gotten a response from anyone and was hoping someone could suggest why this happens and how to fix it.
Website
Thank you, Greg
Hi,
Find the file basic-functions.php
look for this.
function evolve_truncate($str, $length = 10, $trailing = '..') {
$length -= mb_strlen($trailing);
if (mb_strlen($str) > $length) {
return mb_substr($str, 0, $length) . $trailing;
} else {
$res = $str;
}
return $res;
}
Change to the following
function evolve_truncate($str, $length = 10, $trailing = '..') {
return $str;
}
Thanks!
That worked perfectly Denzel Chia. Thank you so much.
Greg