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

Reply To: Show Image in Search Results (Pods)

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)

#32348
Ernest MarcinkoErnest Marcinko
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;
}