Last active
October 11, 2024 06:11
-
-
Save webtoffee-git/a081185398546c3b074c74696e8a5ec6 to your computer and use it in GitHub Desktop.
Add additional meta and role to export CSV - Order Export Import Plugin For WooCommerce (https://www.webtoffee.com/product/order-import-export-plugin-for-woocommerce/)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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