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
July 20, 2020 at 10:18 am
#28575
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!