Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Show Image in Search Results (Pods) › Reply To: Show Image in Search Results (Pods)
March 26, 2021 at 11:16 am
#32348
Keymaster
You are welcome.
Well, it depends, it might be doable programmatically. 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_term_meta_desc", 10, 1 );
function asp_term_meta_desc( $results ) {
// Field name
$field = 'cp_store_website';
// ----------------------------------------------
// --- Do not change anything below this line ---
// ----------------------------------------------
foreach ( $results as $k => &$r ) {
if ( $r->content_type == 'term' ) {
$s = get_term_meta( $r->id, $field, true );
if ( !empty($s) )
$r->content = $s;
}
}
return $results;
}