• Resolved Anonymous User 15393618

    (@anonymized-15393618)


    Hi,

    I’d like to present a custom message when a “Local Pickup” shipping option is selected.

    We currently have two shipping methods: free shipping and local pickup. If free shipping is selected, no message should be displayed. If local pickup is selected, I would like to display a note for scheduling a pickup time. (e.g. “For local pickup, please call 112-358-1321 to schedule a pickup time.”)

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @ehlodex,

    That’s a great question. 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";
      }
      
    4. Change the Call for pickup times to the text you’d like to have. Make sure to leave the quotes.
    5. Publish your changes.

    Here’s what that looks like for me when I added this to your site.

    pickup message.
    Link to image: https://cld.wthms.co/5XWaKP

    Best,

    Thread Starter Anonymous User 15393618

    (@anonymized-15393618)

    Thanks @3sonsdevelopment! Not exactly what I imagined, but it’ll work quite well 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Custom Message for Local Pickup’ is closed to new replies.