Quantcast
Channel: Catch Themes » All Posts
Viewing all articles
Browse latest Browse all 4333

Reply To: replace featured slider with featured image/video

$
0
0

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


Viewing all articles
Browse latest Browse all 4333

Trending Articles