To install the plugin, download the latest release to your WordPress plugins folder and then activate it.
If you wish to make changes to the plugin, you need to install the necessary dependencies and compile assets. First, a couple of prerequisites:
-
Make sure that you have the full plugin source code by either cloning this repo or downloading the source code (not the versioned release) from the releases section.
-
Install Composer
-
Install Node.js
- We recommend a Node.js version manager for Linux/macOS or Windows
- Run
npm install -g grunt-cli
if this the first time you've installed Node.js or switched to a new version
Next, install dependencies:
-
Run
composer install
to install Composer dependencies -
Run
npm install
to install Node.js dependencies
To compile/minify UI assets, run grunt
.
You do not have to run the commands if submitting a pull request as the minification process is handled by our CI/CD pipeline.