iWorks PWA

Description

Super Simple PWA implementation /manifest.json and service worker for
offline.

No configuration.

Installation

There are 3 ways to install this plugin:

1. The super easy way

  1. In your Admin, go to menu Plugins > Add
  2. Search for iWorks PWA
  3. Click to install
  4. Activate the plugin

2. The easy way

  1. Download the plugin (.zip file) on the right column of this page
  2. In your Admin, go to menu Plugins > Add
  3. Select button Upload Plugin
  4. Upload the .zip file you just downloaded
  5. Activate the plugin

3. The old and reliable way (FTP)

  1. Upload iworks-pwa folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

FAQ

How to change meta theme-color?

First plugin try to get theme_mod with default set to f0f0f0:

get_theme_mod( 'background_color', 'f0f0f0');

Please use iworks_pwa_configuration_theme_color filter to change this
value:

add_filter( 'iworks_pwa_configuration_theme_color', function( $color ) {
    return '#f20';
}

As returned value you can return any valid color, bu remember alpha
value will be ignored (for rgba, hsla or hex with alpha).

Reviews

There are no reviews for this plugin.

Contributors & Developers

“iWorks PWA” is open source software. The following people have contributed to this plugin.

Contributors

“iWorks PWA” has been translated into 1 locale. Thank you to the translators for their contributions.

Translate “iWorks PWA” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

0.0.2 (2021-04-26)

0.0.1 (2021-03-18)

  • Init.