From 8c5769913bf08cf82300c5e391ff31b1e33b483f Mon Sep 17 00:00:00 2001 From: Adel Elshafey Date: Sun, 16 Aug 2026 14:23:40 +0300 Subject: [PATCH 1/7] feat(SHPD-9928): display quick delivery tag in storefront header Mount beside the delivery-location (scopes) control in the top navbar, gated to the homepage via is_page('index'). The component self-gates on store.settings.quick_delivery_eligible, so it renders only for eligible stores. --- src/views/components/header/header.twig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/components/header/header.twig b/src/views/components/header/header.twig index 7404d08b8..ad27a23a2 100644 --- a/src/views/components/header/header.twig +++ b/src/views/components/header/header.twig @@ -31,6 +31,11 @@ {% endif %} + {# Quick Delivery tag (homepage only) — self-gates on store.settings.quick_delivery_eligible #} + {% if is_page('index') %} + + {% endif %} + {# Search bar #}