diff --git a/app/views.py b/app/views.py index ab2721d..98ac5b4 100644 --- a/app/views.py +++ b/app/views.py @@ -1297,6 +1297,10 @@ def create_checkout_context( next = "/" if gift_mode: checkout_args["metadata"]["gift_mode"] = True + checkout_args["shipping_address_collection"] = { + "allowed_countries": ShippingZone.all_country_codes + + } next = reverse_lazy("completed_gift_purchase") else: next = reverse_lazy("completed_membership_purchase")