There's no way to reorder the fields in the admin at the moment, but you can quickly change the layout with a little CSS tweaking.
/*restyle international address field ---------*/
span#input_8_3_4_container {display:none} /* hide region from view */
span#input_8_3_3_container {float:right!important; margin-right:16px!important} /* move city field to right */
example screenshot
You'll just need to view the source, and get the actual span id's from your form and replace those in my example.
The CSS snippet above simply hides the state/region field from view. This won't work though if you have the address field set to required since the field is still in the markup and will try to validate.
I'm sure we can come up with a filter or something you can add to your functions page that will actually remove the field if you do need that.
Posted 15 years ago on Wednesday December 2, 2009 |
Permalink