Re: Any way to get the Youtube video 'description' posted above the video itself?

Great plug-in, trying to tweak to get the description above the video.  Can you suggest how that might be done?  I've tried replacing the following line from the WP_ayvpp_insert_post function, but no luck...

    // Modded to get post above video
    //$tern_wp_youtube_array = array_merge($a,array('_tern_wp_youtube_video'=>$i,'_tern_wp_youtube_published'=>$a['post_date']));
    $tern_wp_youtube_array = $a + array('_tern_wp_youtube_video'=>$i,'_tern_wp_youtube_published'=>$a['post_date']);
    $p = wp_insert_post($a);

2

Re: Any way to get the Youtube video 'description' posted above the video itself?

Change line 52 of /core/video.php from:

return $s.$c;

to:

return $c.$s;