No, problem. Just happened to check and see if anyone had posted anything related to my plugin.
I had another thought for how to limit it to just videos. This option would retrieve the normal data then just skip anything not labeled as a video. The downside to this one is that if there aren’t any videos in the portion of the feed that it loads it won’t have anything to display.
The actual code to add would be added to after the foreach starts on line 521 of the current facebook.php file.
foreach($content['data'] as $item) {//this is currently on line 521
// You would add one of the following if statements.
// If you want to limit all feeds displayed
if ( $item['type'] != 'video' )
continue;
// If you only want to limit specific feeds by adding an a value to the args array with the key "video_only"
if ( $video_only == true && $item['type'] != 'video' )
continue;
Every feed item has a type associated with it, I’m not sure what all is currently out there. I’ve got the plugin set up to not be based on the type.