daveb03
Forum Replies Created
-
Forum: Plugins
In reply to: plugin for newest content from other blogs?Has there been a resolution with respect to CG-Feedread Multifeeds (description not truncating and not showing pictures from feeds)?
I’m having a similar issue and here is what seems to be happening:
1) $noHTML seems to be backwards. If I set to false (default) then html is coming through (pictures from feeds), if I set to true then no pictures/html (The documentation says the opposite).
2) The only way I can get the “description” to truncate is to have html come through (but backwards from the docs) but I don’t want the html. What do I need to do? Here is my code and what happens:
$feedOut = getSomeFeed($feeds, $count, true, ‘test1-multifeed’, ”, -1, -1, false, false, 0, false, false, true);
The above has html(pictures) and entire feed comes through
$feedOut = getSomeFeed($feeds, $count, true, ‘test2-multifeed’, ”, -1, -1, true, false, 0, false, false, true);
The above, the entire feed comes through with no html
$feedOut = getSomeFeed($feeds, $count, true, ‘test3-multifeed’, ”, -1, 20, true, false, 0, false, false, true);
The above, no change – the entire feed comes through with no html
$feedOut = getSomeFeed($feeds, $count, true, ‘test4-multifeed’, ”, -1, 200, false, false, 0, false, false, true);
The above, the feed is truncate, however html comes through.
So I can not get it to truncate with No HTML. Am I doing something wrong? (other than this I love this plugin – thanks!)