From 6e4d2734bbfa8db19638227297ceb46335dec886 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Sun, 14 Jun 2026 20:38:15 +0000 Subject: [PATCH] Fix console warnings: remove SW registration, fix meta tag, clean manifest - Remove service worker registration from footer (SW is already self-unregistering) - Add mobile-web-app-capable meta to fix deprecation warning - Remove missing icon references from manifest (only 192/512 PNGs exist) Co-Authored-By: Claude Sonnet 4.6 --- includes/footer.php | 17 +--------- includes/header.php | 1 + manifest.json | 78 --------------------------------------------- 3 files changed, 2 insertions(+), 94 deletions(-) diff --git a/includes/footer.php b/includes/footer.php index 9e4f6f3..d3e79b2 100644 --- a/includes/footer.php +++ b/includes/footer.php @@ -72,22 +72,7 @@ - - - - + diff --git a/includes/header.php b/includes/header.php index 189c42a..97b6387 100644 --- a/includes/header.php +++ b/includes/header.php @@ -59,6 +59,7 @@ $customerUser = $isLoggedIn ? CustomerAuth::getUser() : null; + diff --git a/manifest.json b/manifest.json index 2fc3ce3..c632358 100644 --- a/manifest.json +++ b/manifest.json @@ -8,48 +8,12 @@ "theme_color": "#FF5E1A", "orientation": "portrait-primary", "icons": [ - { - "src": "/assets/icons/icon-72.png", - "sizes": "72x72", - "type": "image/png", - "purpose": "any maskable" - }, - { - "src": "/assets/icons/icon-96.png", - "sizes": "96x96", - "type": "image/png", - "purpose": "any maskable" - }, - { - "src": "/assets/icons/icon-128.png", - "sizes": "128x128", - "type": "image/png", - "purpose": "any maskable" - }, - { - "src": "/assets/icons/icon-144.png", - "sizes": "144x144", - "type": "image/png", - "purpose": "any maskable" - }, - { - "src": "/assets/icons/icon-152.png", - "sizes": "152x152", - "type": "image/png", - "purpose": "any maskable" - }, { "src": "/assets/icons/icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any maskable" }, - { - "src": "/assets/icons/icon-384.png", - "sizes": "384x384", - "type": "image/png", - "purpose": "any maskable" - }, { "src": "/assets/icons/icon-512.png", "sizes": "512x512", @@ -58,48 +22,6 @@ } ], "categories": ["food", "shopping"], - "screenshots": [ - { - "src": "/assets/screenshots/home.png", - "sizes": "1280x720", - "type": "image/png", - "form_factor": "wide", - "label": "Homepage" - }, - { - "src": "/assets/screenshots/shop.png", - "sizes": "1280x720", - "type": "image/png", - "form_factor": "wide", - "label": "Shop" - } - ], - "shortcuts": [ - { - "name": "Shop Coffee", - "short_name": "Shop", - "description": "Browse our coffee selection", - "url": "/shop.php", - "icons": [ - { - "src": "/assets/icons/shop-icon.png", - "sizes": "96x96" - } - ] - }, - { - "name": "My Orders", - "short_name": "Orders", - "description": "View your orders", - "url": "/account/orders.php", - "icons": [ - { - "src": "/assets/icons/orders-icon.png", - "sizes": "96x96" - } - ] - } - ], "related_applications": [], "prefer_related_applications": false }