• Resolved Halfmoon1961

    (@halfmoon1961)


    The Headline on my featured posts on the home page gets truncated on the second line of the headline.

    I’ve checked on this topic and can’t find anything here.
    Here is the site

    Thank you, Greg

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Halfmoon1961

    (@halfmoon1961)

    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!

    Thread Starter Halfmoon1961

    (@halfmoon1961)

    That worked perfectly Denzel Chia. Thank you so much.

    Greg

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Feature Post Headline Length’ is closed to new replies.