Hi all, I have custom acf_forms on the frontend and all works great.
The only issue is the Gallery field. It doesn’t work on mobile at all, nothing can be uploaded and intermittently the “upload files” is not clickable. It seems to work fine on desktop.
I’ve added the following to the head of the template
acf_form_head();
get_header();
wp_enqueue_media();
Forms are being used like so:
<?php acf_form(array(
'post_id' => $post_id,
'field_groups' => array('group_6777be4ea7f06'),
'updated_message' => __('Updated'),
'submit_value' => __('Save'),
));
?>
I’ve also tried 'uploader' => 'basic',
No errors in the console or the log file. I’m a little stumped!