New Topic

Reply To: Video Instead of Slider?

Home › Forum › Customization › Video Instead of Slider? › Reply To: Video Instead of Slider?

#678

StartupWP
Keymaster

You’ll need to setup a child theme:

https://startupwp.com/topic/child-theming/

And copy over header.php from the main theme.

Find this line:

<?php if ( $options['slider'] ){ echo '<div id="slider">'.do_shortcode('[nivoslider slug="slider"]').'</div>'; } ?>

And replace with:

<?php if ( is_home() ) {echo 'YOUR VIDEO CODE HERE';} ?>