Where do you want the slider to appear? Your index is a static page from what I can see and that’s the only place it can show up.
Thread Starter
yard
(@yard)
Yes, sure – my frontpage is one static page named “Welcome” .. Is possible have slider on the top of frontpage, upper on the title page, between top menu and front page content ?
or is there a shortcode for inserting slider into page content ?
many thanks for reply
Open /page-templates/template-page.php, find:
<section class="content-wrap clearfix" role="main">
Add this bellow it:
<?php
if ( of_get_option( 'ac_show_slider' ) && is_front_page() && ac_featured_posts_count() > 2 ) {
get_template_part( 'featured-content' );
}
?>
You need 3 or more featured posts for it to show up.
Thread Starter
yard
(@yard)
Big thanks, working great..