By Anne Marie Rasmussen on Sunday, 07 September 2014
Posted in General Issues
Replies 3
Likes 0
Views 573
Votes 0
I am trying to set up the latest blog module. I do not want a bio showing so have set the bio length to 0. Instead I am now getting "..." where the bio would show and would like to remove it. How can I do that? Thanking you in advance for your reply.
Hello Anne,

Edit the file /modules/mod_latestblogs/tmpl/default_blogger.php and at line 45 remove the codes below,


<?php if(! empty($blogger->details->biography)) : ?>
<div class="mod-author-bio">
"<?php echo (JString::strlen($blogger->details->biography) > $params->get( 'biography_length' , 50 ) ) ? JString::substr($blogger->details->biography, 0, $params->get( 'biography_length' , 50 ) ) . '...' : $blogger->details->biography ; ?>"
</div>
<?php endif; ?>
·
Sunday, 07 September 2014 21:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks worked beautifully. Have a great day!
·
Sunday, 07 September 2014 22:06
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Anne
·
Sunday, 07 September 2014 22:46
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post