Hello,
Thank you for using our plugin. As of now, this plugin only supports CUSTOMER_NAME, CUSTOMER_BILLING_EMAIL, CUSTOMER_BILLING_PHONE fields. We’re developing this plugin so that it can support all default billing and shipping fields.
At line 70 in index.php file of our plugin, we’ve this code
//Find and replace the placeholders with actual value
$data['description'] .= preg_replace(
array('/CUSTOMER_NAME/', '/CUSTOMER_BILLING_PHONE/', '/CUSTOMER_BILLING_EMAIL/'),
array($display_name, $billing_phone, $billing_email),
$gcaleventwcb_option
);
Replace the above code with
//Find and replace the placeholders with actual value
$get_billing_address_1 = $order->get_billing_address_1();
$get_billing_address_2 = $order->get_billing_address_2();
$data['description'] .= preg_replace(
array('/CUSTOMER_NAME/', '/CUSTOMER_BILLING_PHONE/', '/CUSTOMER_BILLING_EMAIL/','/CUSTOMER_BILLING_ADDRESS_1/','/CUSTOMER_BILLING_ADDRESS_2/'),
array($display_name, $billing_phone, $billing_email, $get_billing_address_1, $get_billing_address_2),
$gcaleventwcb_option
);
Please note that CUSTOMER_BILLING_ADDRESS_1 and CUSTOMER_BILLING_ADDRESS_2 are new tags to be used in our plugin setting