Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Last active October 11, 2024 06:11
Show Gist options
  • Save webtoffee-git/a081185398546c3b074c74696e8a5ec6 to your computer and use it in GitHub Desktop.
Save webtoffee-git/a081185398546c3b074c74696e8a5ec6 to your computer and use it in GitHub Desktop.
<?php // do not copy this line
add_filter('hf_alter_csv_header', 'hf_csv_order_add_customer_role_column', 10, 1);
function hf_csv_order_add_customer_role_column($csv_columns) {
// Add a new column for customer roles
$csv_columns['role'] = 'Role'; // The name of the column in the CSV
return $csv_columns;
}
add_filter('hf_alter_csv_order_data', 'hf_csv_order_add_customer_role_data', 10, 1);
function hf_csv_order_add_customer_role_data($order_data) {
// Check if the order is associated with a registered customer
if ($order_data['customer_id'] === 0) {
// If no customer (guest), set the role as 'Guest'
$order_data['role'] = 'Guest';
} else {
// If customer exists, get their role
$user_info = get_userdata($order_data['customer_id']);
$roles = implode(', ', $user_info->roles); // Get all roles assigned to the user
$order_data['role'] = $roles; // Assign the roles to the 'role' column
}
return $order_data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment