Hi @etna32 thanks for reaching out.
You should be able to add the following code to your child theme’s functions.php to move the video above the title in both the archive page and single post pages:
This first line removes the video from the post’s entry content.
remove_action( 'genesis_entry_content', 'gfv_video_image', 0 );
This next line adds the video above the title.
add_action( 'genesis_entry_header', 'gfv_video_image', 0 );
Please let me know if you need any further assistance with this.
Thanks!
Thread Starter
etna32
(@etna32)
Thank you, worked perfectly…