By Giacomo on Friday, 13 October 2017
Posted in General
Replies 1
Likes 0
Views 261
Votes 0
you can increase the number of characters displayed in the search results, see the attached image.
Hi there,

Can your head to this path .../components/com_easysocial/themes/wireframe/search/mini/item.php and increase it value accordingly based on you requirement on line 28 as follows.
[gist type="php"]
//increase it value accordingly.
<?php if (JString::strlen($item->title) > 50) { ?>
<?php echo JString::substr($item->title, 0, 20); ?> <?php echo JText::_('COM_EASYSOCIAL_ELLIPSES'); ?>
<?php } else { ?>
<?php echo $item->title; ?>
<?php } ?>
[/gist]
·
Friday, 13 October 2017 22:58
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post