thanks to fkelly notes in another thread I figured it out...
for anybody who is looking to do the same thing
in mainfile.php look for the first
under that you will see
Code: foreach($feed->get_items() as $item) {
|
you need to replace this line with
Code:$start = 0;
$end = X;
foreach($feed->get_items($start,$end) as $item) {
|
where X = the number of entries you want returned
NB: once you change this it changes the number of entries returned on ALL feeds
cheers (don't thank me thank fkelly)