Core Forms 4.1.0-beta6
Submissions page rebuilt for WP 7.0
WP 7.0's taller native form controls (especially date inputs) caused the old toolbar to wrap onto four lines — bulk actions, then the form filter, then dates, then pagination, each on its own row. New layout:
- Filter card (top): form-picker + date range + Filter button + Clear link, in one row
- Search card (right of the same row): search input + Search button
- Bulk-actions row (under): bulk action select + Apply on the left, item count + pagination on the right
- Cards grid below
Consistent min-height: 36px across selects, date inputs, and buttons so the taller WP 7.0 dates don't stagger the row vertically. Stacks under 900px viewport.
Bonus fix
The previous markup had the filter inputs nested inside the bulk-actions POST form, so the "Filter" button never actually wrote form_id / date_from / date_to to the URL — and the listing reads $_GET. Filtering now uses an independent GET form, so query-string state survives the round trip.
AllSubmissionsTable::extra_tablenav is now a no-op for the same reason (the WP_List_Table hook fires inside the wrong form).