Hello, please take a look at this picture :
I configured "text word amount" on 20 and I want to appear ellipsis (...) when the text is longer than the words limit. Is it possible ?
Thanks
for($j = 0; $j < $this->config['config']->gk_partyfreak->gk_partyfreak_text_word_amount; $j++) {
if(isset($exploded_text[$j])) {
$text .= $exploded_text[$j]." ";
}
}
for($j = 0; $j < $this->config['config']->gk_partyfreak->gk_partyfreak_text_word_amount; $j++) {
if(isset($exploded_text[$j])) {
$text .= $exploded_text[$j]." ";
}
}
$text .= "(...)";