Hi, how can ich change City <-> PLZ that is PLZ first in account view
Announcement
Collapse
No announcement yet.
Change City & PLZ
Collapse
X
-
Thx. edit was easy - i change div and rdy
but adress i have
------------------------------------------------------------------------------------------------
if (cityValue || stateValue || postalCodeValue) {
if (html != '') {
html += '<br>'
}
if (cityValue) {
html += cityValue;
}
if (stateValue) {
if (cityValue) {
html += ', ';
}
html += stateValue;
}
if (postalCodeValue) {
if (cityValue || stateValue) {
html += ' ';
}
html += postalCodeValue;
}
}
----------------------------------------------------------------------------------------------------
change
---------------------------------------------------------------------------------------------------
if (postalCodeValue || cityValue || stateValue ) {
if (html != '') {
html += '<br>'
}
if (postalCodeValue) {
if (cityValue || stateValue) {
html += ' ';
}
html += postalCodeValue;
}
if (cityValue) {
html += cityValue;
}
if (stateValue) {
if (cityValue) {
html += ', ';
}
html += stateValue;
}
}
----------------------------------------------------------------------------------------------------
and i missng a blanc/space btw. plz and city
wh is wrong?1 PhotoLast edited by Palme; 04-09-2016, 01:23 PM.
Comment
Comment