• Resolved etna32

    (@etna32)


    Hi,

    How can I move the video over tile in archive page and in single post page ?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Scott DeLuzio

    (@scottdeluzio)

    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…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Video above title’ is closed to new replies.