I have my feed displayed on a TV where users can not interact with the feed by clicking links etc. Now most of my posts are being truncated by the “read more” button. I’d love to see an option where you can disable this truncation and for example limit the line count for longer text.
1 Like
Hello there and welcome to the Community, @user18531
Thanks for sharing your thoughts with us!
We agree that it would be cool to have this option in the settings. If this idea gets more votes, we’ll try to consider this opportunity in the future
As for now, we’ve implemented this customization using the code below in the Custom CSS field on the Appearance tab of your widget’s settings:
[class*='SimpleShortener__Outer-sc'] {
max-height: unset;
}
[class*='Text__Control-sc'] {
display: none;
}