Skip to content
weballin

weballin DIGIWIKI

Add Shipping Info

add_shipping_info is a GA4 e-commerce event that occurs when entering a shipping address or selecting a shipping method during the checkout process. It records the shipping method as shipping_tier and analyzes the abandonment rate by stage of the payment funnel.

weballin

The add_shipping_info event is a intermediate checkout-funnel event located between begin_checkout and add_payment_info. It is common to send when you click the 'Next' button after entering the delivery address or selecting the delivery method (regular delivery, same-day delivery, etc.).

The shipping_tier parameter allows you to record the selected shipping method (e.g. 'Ground', 'Air', 'Next-day'). Through this, you can compare the selection rate and final purchase conversion rate by delivery method. If you also send the items array, value, currency, and coupon, you can record the shopping cart configuration at that stage.

In the case of clients using multi-step checkout forms in weballin practice, a GTM trigger is placed on the 'Next' button of each step to send add_shipping_info and add_payment_info in order. In the case of single-page checkout (SPA checkout), the implementation method of detecting transitions between steps can be complicated, so cooperation with the development team is essential.

GA4 screen path: Explorations > Funnel Exploration > Set steps in the following order: begin_checkout → add_shipping_info → add_payment_info → purchase.

Key takeaways

  • This is a GA4 e-commerce event that occurs when delivery information is entered and selected during the checkout process.
  • By recording the shipping method selected with shipping_tier, you can compare conversion rates for each shipping option.
  • Measures the funnel steps between begin_checkout and add_payment_info.
  • It corresponds to UA's checkout step 2 (delivery information) and was separated as a separate event in GA4.
  • Send items, value, currency, and coupon together to record shopping cart information at that stage.

References

Frequently asked questions

Do I need to send an event even while entering the shipping address?

No. The correct implementation is to send it only once, when moving on to the ‘next step’ after completing the input. If an event is sent for each input field focus, duplicate data will accumulate.

Do I need to send add_shipping_info even if I only have one shipping method?

It's not absolutely necessary. If you want to analyze the abandonment stage of the checkout funnel more accurately, it is better to send, and if it is a simple funnel, basic conversion analysis is possible with just two events: begin_checkout and purchase.