I’m having a bit of an issue with the jasidenews module.
I only want the module to display the title of the article, however when I change the Max length of description, it still shows “…” how can I remove this from the description only? I still want it to show after limiting the title.
I looked in helper.php and the following code is linked to the Title Max Length and Max Length of Description.
/**
* trim string with max specify
*
* @param string $title
* @param integer $max.
*/
function trimString( $title, $max=0 ){
if( strlen($title) > $max ){
return substr( $title, 0, $max ) . ‘…’;
}
return $title;
}