/home/techb158/balacoffee.com/wp-content/plugins/woocommerce/src/Admin/Overrides
Edit: /home/techb158/balacoffee.com/wp-content/plugins/woocommerce/src/Admin/Overrides/OrderRefund.php (2076B)
customer_id ) ) {
$parent_order = \wc_get_order( $this->get_parent_id() );
if ( ! $parent_order ) {
$this->customer_id = false;
}
$this->customer_id = CustomersDataStore::get_or_create_customer_from_order( $parent_order );
}
return $this->customer_id;
}
/**
* Returns null since refunds should not be counted towards returning customer counts.
*
* @return null
*/
public function is_returning_customer() {
return null;
}
}