Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rajeshsingh520/579fc6d426a272a1084d688330bdcac4 to your computer and use it in GitHub Desktop.
Save rajeshsingh520/579fc6d426a272a1084d688330bdcac4 to your computer and use it in GitHub Desktop.
add_filter('pi_dtt_google_calendar_event_title', function($title, $order_id, $order) {
$customer_name = $order->get_billing_first_name();
$title = $customer_name .' - '.$title;
return $title;
}, 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment