Breadcrumbs behave strangely when using UTF8 characters
-
The breadcrumbs are behaving strangely when using UTF8 characters in breadcrumbs due to this line in the file “kbe-template-functions.php”:
$title = strlen( get_the_title() ) >= 50 ? substr( get_the_title(), 0, 50 ) . ‘…’ :
the fix:
$title = mb_strlen( get_the_title(),’UTF-8′ ) >= 50 ? substr( get_the_title(), 0, 50 ) . ‘…’ :
The page I need help with: [log in to see the link]
- The topic ‘Breadcrumbs behave strangely when using UTF8 characters’ is closed to new replies.