Hi Marios,
I am sorry as I assume that you're referring to Komento Apps in EasySocial isn't? Currently there is no setting to do that but you can tweak the code to achieve this. Here I attached to you a file, please download it and put it here:
/media/com_easysocial/apps/user/komento/komento.php
Then please go to this file: /media/com_easysocial/apps/user/komento/config/admin.json and update the existing code to this:
[
{
"title" : "APP_USER_KOMENTO_SETTINGS_PROFILE",
"desc" : "APP_USER_KOMENTO_SETTINGS_PROFILE_DESC",
"fields" :
[
{
"label" : "APP_USER_KOMENTO_SETTINGS_PROFILE_TOTAL",
"tooltip" : "APP_USER_KOMENTO_SETTINGS_PROFILE_TOTAL_DESC",
"name" : "total-profile",
"class" : "input-mini center",
"type" : "text",
"default" : 5
},
{
"label" : "APP_USER_KOMENTO_SETTINGS_PROFILE_WIDGET",
"tooltip" : "APP_USER_KOMENTO_SETTINGS_PROFILE_WIDGET_DESC",
"name" : "widget-profile",
"type" : "boolean",
"default" : true
}
]
},
{
"title" : "APP_USER_KOMENTO_SETTINGS_STREAM",
"desc" : "APP_USER_KOMENTO_SETTINGS_STREAM_DESC",
"fields" :
[
{
"label" : "APP_USER_KOMENTO_SETTINGS_STREAM_TRUNCATION",
"tooltip" : "APP_USER_KOMENTO_SETTINGS_STREAM_TRUNCATION",
"name" : "komento-stream-truncation",
"class" : "input-mini center",
"type" : "text",
"default" : 50
}
]
}
]
Please add this language strings in your site language:
APP_USER_KOMENTO_SETTINGS_STREAM="Stream"
APP_USER_KOMENTO_SETTINGS_STREAM_DESC="Configure application related settings for comments app on your stream"
APP_USER_KOMENTO_SETTINGS_STREAM_TRUNCATION="Stream truncation"
Hope this helps.