Hey guys, a google search for this exact question brought me here. Failing to find an answer, I had a look at the code and figured it out.
Basically, the behavior of featured-video-plus relies on options. In my case, I needed to display the featured video on single posts, but not in archives.
Here’s the solution that worked for me:
//filter the option - see options.php
add_filter( 'pre_option_fvp-settings', 'wwm_filter_fvp_settings' );
function wwm_filter_fvp_settings( $options )
{
if ( ! is_single() ) {
$options['usage'] = 'manual';
}
return $options;
}