Home › Forums › Pro Support › WPSP with videos › Reply To: WPSP with videos
August 8, 2019 at 4:53 pm
#10661
Keymaster
So first you’ll want to disable the images in your list settings.
Then add this PHP:
add_action( 'wpsp_before_header', function() {
$video = get_post_meta( get_the_ID(), 'your_field_name', true );
if ( $video ) {
echo $video;
}
} );
This assumes that the custom field has the full video HTML.