Skip to content

Instantly share code, notes, and snippets.

View hreidco's full-sized avatar

plasterer hreidco

View GitHub Profile
@hreidco
hreidco / gist:4b6f5f2a7f9f0337e6d2650b428cebe1
Created October 17, 2019 17:13
Add WP username to EE registration CSV
//* Add WP username to EE registration CSV ---------------------------------------------------------------*/
function ee_add_wp_username_to_csv($reg_csv_array, $reg_row) {
//d($reg_row);
$reg_csv_array['WP Username'] = '';
$primary_reg = $reg_row[ 'Registration.REG_count' ] == '1' ? true : false;
if( $primary_reg ) {
$user_id = EE_WPUsers::get_attendee_user($reg_row['Registration.ATT_ID']);
//d($user_id);
if( $user_id != false ) {