Update the industry list in companies
Hi is it possible to update the list of industry types in the companies section to make it more meaningful to me. TIA
add_filter('fluent_crm/company_categories', function ($categories) {
// do your changes
return $categories;
}, 10, 1);Thanks, but what do I do with that code
Chris LeeΒ With the help of that filter hook you can update current list of industries. $categories is an array containing current list of industries.