This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Disable thumbnail image of specific post type

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Disable thumbnail image of specific post type Reply To: Disable thumbnail image of specific post type

#28575
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Sure! Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!

add_filter( 'asp_results', 'asp_remove_term_images', 10, 1 );
function asp_remove_term_images( $results ) {
	foreach ($results as $k => &$r ) {
		if ( $r->content_type == 'term' ) {
			$r->image = '';
		}
	}
	return $results;
}

This should hopefully do the trick!