generally, using a conditional statement with is_home() or is_front_page() should work;
http://codex.wordpress.org/Conditional_Tags
example:
<?php if( is_home() || is_front_page() ) : ?>
whatever code is used to include the slider
<?php endif; ?>
Okay! I’m not too good with all this coding stuff… where would I need to put this? I know somewhere in header.php… does it matter where exactly I put it?
Never mind! I just replaced it with where I had <?php echo do_shortcode(“[metaslider id=277]”); ?> in header.php and it worked!!!! 🙂 THANK YOU SO MUCH!!!