Reply To: Remove Life Stages

Front Page Forums CRM Remove Life Stages Reply To: Remove Life Stages

#18951
michel
Participant

Nice, that did the job.
For those who are wondering about the same, use this code in your child theme’s functions.php


add_filter( 'erp_crm_life_stages', function ( $life_stages ) {
   	$life_stages['student'] = 'Student';
	$life_stages['opportunity'] = 'Parent';
	$life_stages['subscriber'] = 'Alumni';
	$life_stages['customer'] = 'Applicant';
	$life_stages['teacher'] = 'Teacher';
	$life_stages['lead'] = 'Staff';
   return $life_stages;
});

Contact Us

Reach out to us for any inquiry

You must enter full name
You must enter email
You must enter message

We received your message

We will reach you with your email address soon. Thank you for the time!