I currently have in my child functions.php the following added function to add the rev slider in between the main and the blog.
add_action(‘x_before_view_global__slider-below’, ‘slider_above_blog_page’);
function slider_above_blog_page() {
if ( is_home() ) {
echo do_shortcode(’[rev_slider alias=“blog-home”]’);
}
}
Works perfect and the original intent was 3 or 4 slides but that never materialized and client just wants the static image. I’ve tried to re-write the above for a static image but obviously failing, probably the x syntax. Here’s what I wrote;
add_action(‘x_before_view_global__x_image-below’, ‘x_image_above_blog_page’);
function x_image_above_blog_page() {
if ( is_home() ) {
echo do_shortcode(’[x_image type=“none” src=“https://sdrostra.com/wp-content/uploads/2017/07/Skyline1400x350.jpg” alt="" link=“false” href="#" title="" target="" info=“none” info_place=“top” info_trigger=“hover” info_content=""]’);
}
}
Bottom line, don’t need the weight of revslider, just the single responsive image as is and the code I wrote is not working. Thoughts? Thanks.

