Hi @catwigz,
I think I know what you mean. You want The Page/Post’s Featured image to be in place of slider.
For that, do following:
1. Disable Slider
2. Make sure Single Page/Post Image Layout is enabled in Customize=> Theme Options=> Layout Options
2. Add following code in your child theme’s functions.php file:
function catchresponsive_replace_slider() {
remove_action( 'catchresponsive_before_post_container', 'catchresponsive_single_content_image', 10 );
remove_action( 'catchresponsive_before_page_container', 'catchresponsive_single_content_image', 10 );
add_action( 'catchresponsive_before_content', 'catchresponsive_single_content_image', 10 );
}
add_action( 'init', 'catchresponsive_replace_slider' );
Let me know if I got you or not.
Regards,
Pratik