Uhh, what titles? The various article titles seem to all be there for me.
What’s a specific title you are only seeing part of?
Sorry I guess I wasn’t clear enough. On the article I have that says “Yes! Beyonce will be performing at the heart awards” It shows ” Yes beyonce will be…” for example. How do i prevent these ellipsis from showing up?
the shortened title is done by a function in /inc/template-tags.php of your theme:
/*
* Shorten the post title to 50 characters
*/
function trident_shorten_title( $title ) {
$chars_limit = 50;
$chars_text = strlen( $title );
$title = $title." ";
$title = substr( $title, 0, $chars_limit );
$title = substr( $title, 0, strrpos( $title,' ' ) );
if ( $chars_text > $chars_limit ) {
$title = $title."...";
}
return $title;
}
unfortunately, this function is neither pluggable, nor is the length changeable via a filter.
for how to do it the best way, please post in https://ww.wp.xz.cn/support/theme/trident-lite