Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix embedded views in other fields #2149

Merged
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
2 changes: 1 addition & 1 deletion includes/class-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,7 @@ function gravityview_field_output( $passed_args, $context = null ) {
return '';
}

if ( '' !== $placeholders['value'] && ! empty( $args['wpautop'] ) ) {
if ( '' !== $placeholders['value'] && ! empty( $args['wpautop'] ) && 'gravityview_view' !== ( $field['id'] ?? '' ) ) {
$placeholders['value'] = wpautop( $placeholders['value'] );
}

Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Beautifully display your Gravity Forms entries. Learn more on [gravitykit.com](h
* Fixed: Clearing search removed all URL query parameters and under some circumstances redirected to the homepage.
* Fixed: Searching the View added duplicate search parameters to the URL.
* Fixed: PHP 8.2 deprecation notice related to dynamic property creation.
* Fixed: Entries not displaying when a DataTables View is embedded in a Single Entry page using the List layout.

= 2.28.0 on August 29, 2024 =

Expand Down