Skip to main content

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

Shiam Chowdhury

add_filter('fluent_crm/company_categories', function ($categories) {
    // do your changes

    return $categories;
}, 10, 1);

Chris Lee

Thanks, but what do I do with that code

Shiam Chowdhury

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.