Skip to content

gpml-acf-user-image-field.php: Fixed an issue with User Image getting removed on form resubmission. #1091

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
25 changes: 25 additions & 0 deletions gp-media-library/gpml-acf-user-image-field.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,31 @@ function update_user_image_field( $user_id, $feed, $entry ) {
$value = array_merge( $current_value, $value );
}

// Check for uploaded files in the $_POST data, we may need to prevent the ACF field from being set to empty.
$raw_json = $_POST['gform_uploaded_files'] ?? '';
if ( empty( $value ) && $raw_json ) {
$clean_json = stripslashes( $raw_json );

$uploaded_files_array = json_decode( $clean_json, true );

$field_id = $this->_args['field_id'];
$key = 'input_' . $field_id;

if ( isset( $uploaded_files_array[ $key ][0]['uploaded_filename'] ) ) {
$filename = $uploaded_files_array[ $key ][0]['uploaded_filename'];

global $wpdb;
$attachment_id = $wpdb->get_var( $wpdb->prepare(
"SELECT ID FROM $wpdb->posts WHERE post_type = 'attachment' AND guid LIKE %s LIMIT 1",
'%' . $wpdb->esc_like( $filename ) . '%'
));

if ( $attachment_id ) {
$value = $attachment_id;
}
}
}

if ( empty( $value ) && ! $this->_args['remove_if_empty'] ) {
return;
}
Expand Down
Loading