[ad_1]
Hey @sho-down
For the Customer since field, you can use the $custoner->date_created method.
Perhaps something like this to get the date:
$customer_since_date = substr( $customer->date_created, 0, strpos( $customer->date_created, ' ' ) );
$customer_since = date( 'F j, Y', str_replace( '-', '/', strtotime( $customer_since_date ) ) );
Something similar can be done for the purchase value as that is now stored in the Customer table:
echo edd_currency_filter( edd_format_amount( $customer->purchase_value ) );
