This file contains hidden or 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
| /** | |
| * Add customer's last order product name as Mailchimp member tag on sync | |
| */ | |
| function product_mailchimp_tag($tags, $email) | |
| { | |
| $new_tags = []; | |
| $query = new WC_Order_Query(); | |
| $query->set('customer', $email); | |
| $customer_orders = $query->get_orders(); |