Contact types changes
Hello team is there anyway we could add more status in this part of Fluent CRM
Hello Ethan Bonnamour,
Yes! You can add more contact types using the fluent_crm/contact_types filter.
add_filter('fluent_crm/contact_types', function ($types) {
$types['prospect'] = __('Prospect', 'fluent-crm');
$types['vip'] = __('VIP', 'fluent-crm');
return $types;
});