By Andrew on Wednesday, 25 December 2013
Posted in Technical Issues
Replies 2
Likes 0
Views 629
Votes 0
Find this.
/components/com_easydiscuss/themes/flatt/post.vote.php
on line #34
<span>votes</span>


Change it to

<span><?php echo JText::_( 'COM_EASYDISCUSS_POST_TOTAL_VOTES_PLURAL' ); ?></span>

or something like that.

P.S. Latest version.

Hope this help.
Hello Andrew,

I am really sorry for the delay of this reply as it is a Christmas day for us here.
Thanks for reporting on this
Yes, you're correct that language string code, we will add this fix in next release version.
·
Wednesday, 25 December 2013 12:20
·
0 Likes
·
0 Votes
·
0 Comments
·
And one more:
/com_easydiscuss/themes/flatt/frontpage.post.php on line 125

							<!-- <i class="icon-inbox"></i> -->
By
<strong class="discuss-user-name mv-5">
<?php if( !$post->user_id ){ ?>
<?php echo $post->poster_name; ?>
<?php } else { ?>
<?php echo $post->user->getName();?>
<?php } ?>
</strong>

word "By"

change it to:

<!-- <i class="icon-inbox"></i> -->
<?php echo JText::_( 'COM_EASYDISCUSS_POSTED_BY' );?>
<strong class="discuss-user-name mv-5">
<?php if( !$post->user_id ){ ?>
<?php echo $post->poster_name; ?>
<?php } else { ?>
<?php echo $post->user->getName();?>
<?php } ?>
</strong>
·
Wednesday, 25 December 2013 07:42
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post