Home › Forums › Support › Add featured image on custom post type This topic has 4 replies, 2 voices, and was last updated 3 years, 4 months ago by David. Viewing 5 posts - 1 through 5 (of 5 total) Author Posts September 24, 2019 at 2:54 am #1017399 onalti Customizer> Layout> Blog. I turned it off for blog pages, and it was passive on special post types. Is there a filter for me to activate in special shipment types? September 24, 2019 at 3:07 am #1017411 DavidStaff Customer Support Hi there, you can use the Blog Options filter: https://docs.generatepress.com/article/option_generate_blog_settings/ Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ September 24, 2019 at 3:35 am #1017422 onalti Thank you. Can apply well for special shipment types. add_filter( ‘option_generate_blog_settings’, ‘lh_custom_search_results_page_settings’ ); function lh_custom_search_results_page_settings( $options ) { if ( is_post_type_archive( ‘custom_category’ ) ) { $options[‘single_post_image’] = true; $options[‘single_post_image_position’] = ‘below-title’; } return $options; } September 24, 2019 at 4:03 am #1017442 onalti thank you. My problem is solved. September 24, 2019 at 4:24 am #1017454 DavidStaff Customer Support You’re welcome Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Author Posts Viewing 5 posts - 1 through 5 (of 5 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In