Add WooCommerce local pickup custom message

There’s not a built-in way to add a message that displays here when local pickup is selected. We can add in a message with a bit of CSS though. Here’s what to do:

  1. In your dashboard, go to Appearance > Customize.
  2. Click on Additional CSS.
  3. Paste this in there:
#shipping_method_0_local_pickup2:checked + label [ for=shipping_method_0_local_pickup2 ]::after { 
    display: block; 
    content: "Call for pickup times";
}