The fix is like this.
File: plugins/extended-crm-for-users-insights/includes/notes/class-note-fields.php (line 24)
public function register_fields($fields){
if(!empty($fields) && is_array($fields)){
$fields[]=array(
'name' => __('Last Note Date', 'extended-crm-for-users-insights'),
'id' => 'ecui_last_note_date',
'order' => 'DESC',
'show' => true,
'fieldType' => 'ecui',
'filter' => array(
'type' => 'date'
)
);
$fields[]=array(
'name' => __('Note content', 'extended-crm-for-users-insights'),
'id' => 'ecui_note_content',
'order' => 'DESC',
'show' => true,
'hideOnTable' => true,
'fieldType' => 'ecui',
'filter' => array(
'type' => 'text'
)
);
}
return $fields;
}
Plugin Author
Deni
(@denizz)
Hi,
Thanks a lot for reporting this, I’ve scheduled a fix in an update.