I’m using Simple Catch, the slider is built into the theme itself. I thought I was posting in Simple Catch’s support, my bad. But here is the link to the theme itself: https://www.ads-software.com/extend/themes/simple-catch
I’ve been digging around the php, and as far as I can tell it has been setup to only display on the homepage. I’m not terribly familiar with PHP, but I tried changing it to appear on all pages and it won’t go through.
/**
* Display slider or breadcrumb on header
*
* If the page is home or front page, slider is displayed.
* In other pages, breadcrumb will display if exist bread
*/
function simplecatch_sliderbreadcrumb() {
// If the page is home or front page
if ( is_home() || is_front_page() ) :
// display featured slider
if ( function_exists( 'simplecatch_sliders' ) ):
simplecatch_sliders();
endif;
else :
// if breadcrumb is not empty, display breadcrumb
if ( function_exists( 'bcn_display_list' ) ):
echo '<div class="breadcrumb">
<ul>';
bcn_display_list();
echo '</ul>
<div class="row-end"></div>
</div> <!-- .breadcrumb -->';
endif;
endif;
} // simplecatch_sliderbreadcrumb
This seems to be what is preventing me from getting this on any other page. I’ve honestly never worked with breadcrumbs before, so I have no idea what to do there.