You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey I was trying to implement publicautocomplete for my site and tried to match match-column to organization name AND nick name which failed. Did I make a mistake in my code or is this simply not possible?
global $civicrm_setting; $civicrm_setting['eu.tttp.publicautocomplete']['match_columns'] = array( 'organization_name', 'nick_name', );
The text was updated successfully, but these errors were encountered:
Hi @nillde I don't think that will work. There is no match_columns config option per se. Rather, the correct option is named match_column (note the singular rather than plural naming), and it expects to be a column name such as 'organization_name' or
'nick_name', rather than an array of multiple column names.
Hey I was trying to implement publicautocomplete for my site and tried to match match-column to organization name AND nick name which failed. Did I make a mistake in my code or is this simply not possible?
global $civicrm_setting;
$civicrm_setting['eu.tttp.publicautocomplete']['match_columns'] = array(
'organization_name',
'nick_name',
);
The text was updated successfully, but these errors were encountered: