By David Judah on Monday, 24 February 2014
Posted in General Issues
Replies 5
Likes 0
Views 799
Votes 0
Hi there,

Where do I get rid of comments truncation. As I do not limit users comments charectars I don't see the need for that service (truncation that is).
Hello David,

Sorry for late reply to this,
You can disable the option from your backend > Komento > Integration > Select your component > Antispam > Comment Length - Disable ( http://screencast.com/t/BM7G1UmOdM )
Hope this help.
·
Monday, 24 February 2014 22:26
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Arlex,

I did that already and still I can see the truncation!!?
·
Monday, 24 February 2014 22:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello David,

I have tried to submit a long comment in your article page, it seems like showing the full comment in your site, see my screenshot : http://screencast.com/t/iLBvp4y7zv
Please advise.
·
Monday, 24 February 2014 22:57
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Arlex,

I think you misunderstood my question. You know how at the bottom of the comment bar (while you are typing your comment) there is a little charectar counter. With each charecter you type, the counter adds another digit. I would like to get rid of this as it is of no service to me.

Is that possible?
·
Monday, 24 February 2014 23:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello David,

I'm really sorry that i misunderstood in your previous reply,
Unfortunately that do not have this option to turn off the "Comment length count", you have to manually remove the code from here JoomlaFolder\components\com_komento\themes\kuro\comment\form\length.php
LINE 14 until 42

<div class="commentLength kmt-form-length kmt-has-tip">
<b><span class="commentLengthCount">0</span>
<?php if( $system->config->get( 'antispam_max_length_enable' ) == 1 && $system->config->get( 'antispam_max_length' ) > 0 && ( ( $system->config->get( 'antispam_min_length_enable' ) && $system->config->get( 'antispam_max_length' ) > $system->config->get( 'antispam_min_length' ) ) || !$system->config->get( 'antispam_min_length_enable' ) ) ) { ?>
<span class="commentMaxCount">/ <?php echo $system->config->get( 'antispam_max_length' ); ?></span>
<?php } ?>
</b>

<?php if( $system->config->get( 'antispam_min_length_enable' ) || $system->config->get( 'antispam_max_length_enable' ) ) { ?>
<span class="kmt-tip">
<i></i>
<span>
<b><?php echo JText::_( 'COM_KOMENTO_FORM_CHARACTER_RESTRICTION' ); ?></b>
<?php if( $system->config->get( 'antispam_min_length_enable' ) && $system->config->get( 'antispam_max_length_enable' ) ) { ?>
<div><?php echo JText::sprintf( 'COM_KOMENTO_FORM_CHARACTER_BETWEEN', $system->config->get( 'antispam_min_length' ), $system->config->get( 'antispam_max_length' ) ); ?></div>
<?php } else {
if( $system->config->get( 'antispam_min_length_enable' ) ) { ?>
<div><?php echo JText::sprintf( 'COM_KOMENTO_FORM_CHARACTER_MIN', $system->config->get( 'antispam_min_length' ) ); ?></div>
<?php }

if( $system->config->get( 'antispam_max_length_enable' ) ) { ?>
<div><?php echo JText::sprintf( 'COM_KOMENTO_FORM_CHARACTER_MAX', $system->config->get( 'antispam_max_length' ) ); ?></div>
<?php }
} ?>
</span>
</span>
<?php } ?>
</div>

·
Tuesday, 25 February 2014 00:16
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post