Hello, how do I increase the character count to include all the words before the 'read more' line in my article? Where do I modify this? Right now it's cutting it off.
Thanks, Nader
Hi Nader,
You can go to file: root/plugins/jamegafilter/content/helper.php
At approx line 169:
$item->desc = $text ? $this->getDesc($text) : '';
change it to:
$item->desc = $baseItem->introtext;
Then index the filter.
saguaros You're the best! That did the trick 😉
Nader