Hi John.
without altering basic structure?
Well, depends on what you mean by “basic structure”. You’ll need to edit two theme files.
1. Copy single.php to your child theme. At the top of the file you’ll find this:
<div class="pad group">
<?php while ( have_posts() ): the_post(); ?>
Add a line to call the featured post slider:
<div class="pad group">
<?php get_template_part('inc/featured'); ?>
<?php while ( have_posts() ): the_post(); ?>
2. Copy /inc/featured.php to /inc/featured.php in your child theme. You’ll find these two lines near the top:
<?php if ( is_home() && !is_paged() && ( ot_get_option('featured-posts-count') =='1') ): // No slider if 1 post is featured ?>
<?php elseif ( !is_paged() && ( ot_get_option('featured-posts-count') !='0') ): // Show slider if posts are not 1 or 0 ?>
On both lines remove the is_home and is_paged criteria at the beginning of the lines:
<?php if ( ( ot_get_option('featured-posts-count') =='1') ): // No slider if 1 post is featured ?>
<?php elseif ( ( ot_get_option('featured-posts-count') !='0') ): // Show slider if posts are not 1 or 0 ?>
The settings in the Theme Options > Blog > Featured Post options will apply to all sliders.