Viewing 1 replies (of 1 total)
  • Thread Starter Syrehn

    (@syrehn)

    Disregard this question. I found the answer. We can add custom “States” using the following snippet:

    add_filter( 'wpas_ticket_statuses', 'wpas_my_custom_status' );
    function wpas_my_custom_status( $status ) {
    	$status['my_custom_status'] = 'My Custom Status';
    	return $status;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Custom Status Question’ is closed to new replies.