• Resolved camduncalfe

    (@camduncalfe)


    How can I unhook the featured video from the entry-content and add it to the header on the single post and archive pages?

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

    (@scottdeluzio)

    To move it on the single post and archive page, you can use the following code to either a custom plugin or to your theme’s functions.php:

    remove_action( 'genesis_entry_content', 'gfv_video_image', 0 );
    add_action( 'genesis_entry_header', 'gfv_video_image', 0 );

    This will remove it from the default area (before the post content), and add it just before the title.

    If this helped solve your problem, could you please leave a review? If not, please let me know what else I can do to help.

Viewing 1 replies (of 1 total)
  • The topic ‘Add Featured Video BEFORE Entry Title’ is closed to new replies.