By Benoit Gonneville Damme on Friday, 24 October 2014
Posted in Technical Issues
Replies 1
Likes 0
Views 1K
Votes 0
Hey guys,

I'm looking to find where in ES files is the settings to limit the text of the "search-result-name" in the ES search result.

Anyway I can disable the wrapping of the name so it shows the full name of the items?

Thanks!

B.
Hello Benoit Gonneville Damme,

I am sorry for the delay of this reply.

To remove the characters limits on title from toolbar search results, take a look at file 'JOOMLA/components/com_easysocial/themes/wireframe/search/default.item.mini.php' at line 16:


$title = ( JString::strlen( $item->title ) > $maxchar ) ? JString::substr( $item->title, 0, $maxchar ) . JText::_( 'COM_EASYSOCIAL_ELLIPSES' ) : $item->title;


and replace the above with the following:


$title = $item->title;


Hope this help and have a nice day !
Sam
·
Friday, 24 October 2014 11:57
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post