This plugin allows you to extend Caldera Forms to have a video embedded, on click a user will get a form which must be completed before video can continue playing.
Uses cookies to track so same visitor does not need to fill out the form twice.
Example
[caldera_forms id="form_id" video_id="video_id" video_source="youtube"]
ID
of the videoSource
of the video (i.e youtube
)cf_video_overlays_wrapper_classes - adds classes to the main wrapper
add_filter( 'cf_video_overlays_wrapper_classes', function( $classes ) {
$classes[] = 'hi-shawn';
return $classes;
}, 10 );