Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
- requires: WordPress 6.0.0
- tested: WordPress 6.4.3

## 1.7.1

- Feat: add label setting to DigiD field

## v1.7.0

- Feat: Add PHP 8.1 compatibility
Expand Down
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Description: Add a DigiD login field to GravityForms.
* Author: Yard | Digital Agency
* Author URI: https://www.yard.nl
* Version: 1.7.0
* Version: 1.7.1
* License: GPL3.0
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: owc-gravityforms-digid
Expand All @@ -23,7 +23,7 @@
define('GF_DIGID_PLUGIN_FILE', __FILE__);
define('GF_DIGID_PLUGIN_SLUG', 'owc-gravityforms-digid');
define('GF_DIGID_ROOT_PATH', __DIR__);
define('GF_DIGID_VERSION', '1.7.0');
define('GF_DIGID_VERSION', '1.7.1');

/**
* Manual loaded file: the autoloader.
Expand Down
1 change: 1 addition & 0 deletions src/DigiD/DigiDField.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public function get_form_editor_button()
public function get_form_editor_field_settings()
{
return [
'label_setting',
'input_placeholders_setting',
'rules_setting',
'conditional_logic_field_setting',
Expand Down
Loading