Hi, I installed a child theme.
So basically there is no way to insert a slider for featured posts on the homepage without editing the php file correct? I would like the slider I created above my logo at the top end of my header. Is this possible at all? I would like some sort of slider/news feed besides on the side widget.
This is the code i’m using but am having no luck:
// Add a custom slider to search pages
// =============================================================================
function custom_slider() { ?>
<?php if( is_search() ) : ?>
<div class="x-container custom-slider" style="clear: both;">
<?php echo do_shortcode('[rev_slider alias="slider"]'); ?>
</div>
<?php endif;
}
add_action('x_after_view_global__slider-below','custom_slider', 30);
// =============================================================================