XF 2.2 Turn The PWA Function Off

There is no switch to turn this off, but you've got a few options to prevent PWA functionality
  1. Run the site via HTTP only (definitly not recommended, don't do this!)
  2. Remove
    Code:
        <link rel="manifest" href="{{ base_url('webmanifest.php') }}">
        <xf:if is="property('metaThemeColor')">
            <meta name="theme-color" content="{{ parse_less_color(property('metaThemeColor')) }}" />
        </xf:if>
    
        <meta name="apple-mobile-web-app-title" content="{{ $xf.options.boardShortTitle ?: $xf.options.boardTitle }}">
    from template PAGE_CONTAINER and prevent access (serve 404 via webserver, etc.) to webmanifest.php
 
Top Bottom