Turn off Slider in Content>Front Page>Select front page slider
Then add HTML, shortcode etc into your Page.
That doesn’t solve the problem. It then puts the content i want (static image or different plugin) below the featured pages. I am looking for a way something in that same location above the featured pages.
Below is the code that I put in my functions.php file of the child theme. If you go to http://www.midwestsportstrips.com you will see error that I’m seeing.
add_filter(‘tc_fp_block_display’, ‘content_before_fp’);
function content_before_fp($html) {
$before_fp = <img src=”http://midwestsportstrips.com/wp-content/uploads/2015/06/Capture.png” alt=”Baseball Trips FP” style=”width:844px;height:344px;”>;
return $before_fp.$html;
}
Thanks