Hi

Is altering the title label possible ? Would entity_info_alter() or form_alter() work with this ?

Present : Title (1)

Trying to acheive : Title, Another field

Comments

ykarthikvarma created an issue. See original summary.

slv_’s picture

Status: Active » Closed (works as designed)

Hi @ykarthikvarma.

The function that resolves the label to use, already calls entity_label(), which means you can use hook_entity_info_alter() to add your own label callback and generate what you need.

Additionally, look for hook_entityreference_autocomplete_matches_alter into entityreference_autocomplete.api.php, as it's called after results have been prepared, and you can alter the rendered output there, too.

Closing.