This article covers the action hooks that are within Zero BS CRM with information on how to use them.
Zero BS CRM Action Reference
We have the following actions hooks available to you in Zero BS CRM
zbs_new_customer
This hook fires when a new customer (contact) is added to your CRM, here’s an example of how to use it to add a new WordPress User
add_action('zbs_new_customer','zeroBSCRM_newWPuser'); function zeroBSCRM_newWPuser($cID){ $email = zeroBS_customerEmail($cID); $pwd = wp_generate_password(8,false); $user_id = wp_create_user( $email, $pwd, $email); return $user_id; }