Hi,
I am trying to have multiple Frontend Submissions on one page, for each post, with edit="true". I'm doing this in PHP, so using 'echo do_shortcode'. So getting each post id into the shortcode is no problem.
However, I see each form inputs for each post have the same HTML ID and Name fields. Ajax of course here will not work (as all frontend submissions forms update).
If I set 'redirect=[page url] in the shortcode it almost works. The page refreshes, only the relevant fields for that post update, but the parameter '?rwmb_frontend_field_post_id=' is added to the URL, and every frontend submission shows the same updated value.
If I remove that parameter manually, everything is ok, the frontend submission boxes show their correct values.
What would be the best way to do this with multiple frontend submissions shown, using the shortcode and or PHP?