Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 1.63 KB

README.md

File metadata and controls

35 lines (30 loc) · 1.63 KB

Gravity Forms x Polylang

This Wordpress plugin adds form titles, descriptions, field labels, etc, to Polylang string translations

This repository is a fork of pdme/gravity-forms-polylang to update the plugin to work with the latest version of wordpress and implement open pull requests of the original repository.

Installation

From the Wordpress plugin directory

Gravity Forms x Polylang is available on the Wordpress plugin directory.

Manual Wordpress installation

Download the latest version of the plugin from the Releases section. You can then manually upload the zip file in the "plugins" section of your wordpress installation.

Wordpress via composer

The plugin is installable via WordPress Packagist. A site that mirrors the Wordpress plugin and theme directory as a repository for composer. If you don't have it already, add WordPress Packagist as a repository to your composer.json file. Example:

"repositories":[
        {
            "type":"composer",
            "url":"https://wpackagist.org",
            "only": [
                "wpackagist-plugin/*",
                "wpackagist-theme/*"
            ]
        }
    ],

And add the Gravity Forms x Polylang plugin to the requirements section. Example:

"require": {
    "wpackagist-plugin/translate-gravity-forms-x-polylang": "1.0.0"
}

After this, run composer update and activate the plugin in the "plugins" section of your wordpress installation