• Resolved gr9zz

    (@gr9zz)


    Hello,
    It works with Chrome on Windows but not with Safari (iOs).
    Why ?
    Thanks

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi,
    Did you activate the free “Apple Touch Icons & Splash Screen” add-on from the SuperPWA/Add-ons in WordPress back office?
    You should also take into account that some features have not yet been implemented in IOS. It all depends on what is not working for you?

    The only missing element in SuperPWA is the management of the status bar on the iPhone. To work around this, just use the “superpwa_wp_head_tags” hook provided. You have to add a piece of code in the function.php file of your theme:

    function superpwa_ati_add_apple_status_bar( $tags ) {
    $tags .= ‘<meta name=”apple-mobile-web-app-capable” content=”yes”>’ . PHP_EOL;
    $tags .= ‘<meta name=”apple-mobile-web-app-status-bar-style” content=”black-translucent”>’ . PHP_EOL;
    return $tags;
    }
    add_filter(‘superpwa_wp_head_tags’,’superpwa_ati_add_apple_status_bar’);

    You can replace “black-translucent” with “default” or “black” at your convenience.

    Thread Starter gr9zz

    (@gr9zz)

    Hello,
    The download banner appears on android (chrome) but not on safari (ios).
    Check this video: https://www.dropbox.com/s/1ib1jtq1mwds21p/ios.mp4?dl=0

    Thread Starter gr9zz

    (@gr9zz)

    Parse error: syntax error, unexpected ‘name’ (T_STRING) in /home/cadcomdeel/www/houseofthetest/wp-content/themes/ABCO-Diagnostics/functions.php on line 16

    Screenshot: https://www.dropbox.com/s/spcrz0ea9cvpmmq/parse.jpg?dl=0

    Plugin Author SuperPWA

    (@superpwa)

    Please follow this tutorial to test PWA on iOS device https://superpwa.com/doc/test-pwa-ios-devices/. And check it once whether having the same issue or not. Then do let us know.

    Hi, how to Increase splash screen logo size to bigger (kept 512 X 512 )
    not updated. same as 192×192…
    _thanks

    Plugin Author SuperPWA

    (@superpwa)

    info9srinivas: As per forum guidelines please create a new topic.

    Thread Starter gr9zz

    (@gr9zz)

    Ok thanks !

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Not working on Safari (iOs)’ is closed to new replies.