Hi,
I wanted to hide the State/Province field because nobody need this field in Germany. I found this code and added it to my css
span#input_2_11_4_container {display:none} /* hide region from view */
span#input_2_11.3_container {float:right!important; margin-right:16px!important} /* move city field to right */
It works smoothly and the field is hidden and city is moved to the right. But the problem is that if somebody wants to fill out the whole form I will get everytime an error because there is a empty field which is required in the ADDRESS field. It is normal because the State field is hidden, but if the whole address field is set to required he wants this field to be filt out.
Any idea to solve this problem?