• Resolved bgorbett

    (@bgorbett)


    It seems like a Contact “Title” would be a default field in the CRM. I have multiple contacts at a company and it would be helpful to know what each person does (i.e. Title: President/CEO).

    Thanks.

Viewing 1 replies (of 1 total)
  • @bgorbett,

    Right now, there are four default life stages for a contact- https://prntscr.com/i9i1e1
    But still, you can add custom life stage like- CEO (According to your needs) by using our filter if needed.

    Add the lines in your theme’s function.php and you will see a new life stage is available in the dropdown!

    <?php
    
    add_filter( 'erp_crm_life_stages', function ( $life_stages ) {
       $life_stages['CEO'] = 'CEO';
       
       return $life_stages;
    });

    Cheers!

Viewing 1 replies (of 1 total)
  • The topic ‘Contact Title?’ is closed to new replies.