Quote:
Originally Posted by BamaStangGuy
I have this working in 3.6.2
This is a great hack but is a bit limiting.
I would like to limit title's to xx characters and be able to define how many feeds it lists per feed url I add.
|
Limiting the Title Length is easy and exactly why the
Data modification code box exists. Just add the code needed to trim the titles however you would like them. As a very brief example to trim it to 10 chars...
Code:
$rss_item['TITLE'] = substr($rss_item['TITLE'], 0, 10);
Limiting the number of items on a per feed basis would require a small code change but if you know php it wouldn't be too hard to pull off.