Hi,
I’ve managed to get a product code to appear in the relationship field, but I would like that code to be searchable too from the relationship search bar… is that possible?
thanks,
function my_acf_relationship_result( $html, $object, $field, $post )
{
// add an image to each result
$code = get_field('product_code') ;
$html = '<span style="font-size: 0.75em; color: #999" >' . $code . ' - </span>' . $html;
return $html;
}
// acf/fields/relationship/result - filter for every field
add_filter('acf/fields/relationship/result', 'my_acf_relationship_result', 10, 4);