-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release introduces support for the Source ID meta (Gravity Forms 2.9+), adds a new User Activation field to the View editor, and includes various fixes and enhancements. #### 🚀 Added * Support for the Source ID meta introduced in Gravity Forms 2.9. * New User Activation field in the View editor to activate users added by the Gravity Forms User Registration add-on. * Client-side validation of View editor settings to prevent incorrect values. * `:initials` merge tag modifier for Name fields to display initials. * `:format` merge tag modifier for field inputs (e.g., `{Event Field:1.1:format:Y-m-d}`). #### 🐛 Fixed * Merge tags in redirect URLs were not processed after editing or deleting an entry in the lightbox. * Individual Checkboxes field inputs incorrectly exported in CSV. * Custom permalinks not being used in embedded Views. * Deprecated filter notice when both the Advanced Filter extension (version 3 or newer) and Gravity Flow are active. * Labels for fields with empty values disappearing in mobile view when joining forms using the Multiple Forms extension. * Views defaulting to English instead of the site's language for users without certain capabilities. #### 🔧 Updated * [Foundation](https://www.gravitykit.com/foundation/) to version 1.2.22. #### 💻 Developer Updates * Added `gravityview/template/field/csv/tick` filter to programmatically modify the checkbox "check" output in CSV. * Added `gravityview/shortcode/after-processing` action after a `[gravityview]` shortcode is finished. 💾 [Build file](https://www.dropbox.com/scl/fi/hzb1ofveml13nkj2y8oho/gravityview-2.33-e621cbbe3.zip?rlkey=jqhtrzpmzfx3i4gc9e4ed3gk0&dl=1) (e621cbb).
- Loading branch information
Showing
59 changed files
with
2,040 additions
and
541 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,6 +130,10 @@ | |
} | ||
} | ||
|
||
select { | ||
width: 100%; | ||
} | ||
|
||
textarea { | ||
vertical-align: top; | ||
height: 3.5em; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.