We can wrap the slider shortcode in template with this condition so that it will output the slider only on front page (as set in your site).
<?php if ( is_front_page() && !is_home() ):?>
<!-- echo slider shotcode here-->
<?php endif; ?>
paulwpxp where do i place the short code. Sorry, i’m new to Word Press. Which template? header, main index? please advise..
Hi Your second question is different from your first question. Your first question indicated that you already have had that inside your theme so you should know best where that code is located.
But anyway since the slider is on all pages I’m guessing that the code is in header.php, this is my best guess. If you found that code, just wrap it in conditional (if/endif) code.
We can do it via CSS, this doesn’t require messing with template.
Install one of these Custom CSS plugins
https://wordpress.org/plugins/search.php?q=custom+css
And use this code in its setting
#banner { display: none; }
.home.page #banner { display: block; }