Hello team,
Is there any way to show ACF field validation error below filed instead of above filed?
I have front-end form in which i need to show validation errors below each required field not above field.
I don’t see any way to do this. You might want to try asking the developer.
You can re-order items using flexbox. Try applying this CSS to the .acf-input
element:
display:flex;
flex-direction: column-reverse;