How To Shorten The Blog Short Description

I am using the blog addon on V4.3.1 and and short descriptions are so long how can they be shortened?



This is what I am talking about

Please open the following file:



design\themes\YOUR_THEME\templates\addons\blog\hooks\pages\page_extra.pre.tpl



and replace:


```php

{$subpage.spoiler nofilter}

```

with

```php
{$subpage.spoiler|strip_tags|truncate:250 nofilter}

```

Do not forget to clear the cache then

That worked really well. Thank you eComLabs.

You are welcome!