Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Last active August 29, 2015 14:19
Show Gist options
  • Save bryceadams/a3e02471128c4b1cf36f to your computer and use it in GitHub Desktop.
Save bryceadams/a3e02471128c4b1cf36f to your computer and use it in GitHub Desktop.
add_filter( 'wcdrip_custom_fields', 'drip_add_first_last_fields', 10, 5 );
function drip_add_first_last_fields( $filters, $email, $lifetime_value, $products, $order ) {
unset( $filters['name'] );
$filters['first_name'] = $order->billing_first_name;
$filters['last_name'] = $order->billing_last_name;
return $filters;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment