Magento: Change order of billing information in checkout -


the default magento billing information style this

name surname  adress  house number  city, zip code  country  telephone  

i need change to

name surname  adress house number  city, zip code  country  telephone 

but cant seem find way this.

any thoughts? there's nothing in .phtml files.

are using default skin magento?

in /app/design/frontend folder you’ve number of different packages (eg. base) , themese (e.g. default). in admin area navigation system > configuration > click ‘design’ tab. here you’ll able see current package , theme you’re using.

magento has system of inheritance template files in current package have priority on magento defaults (base/default). therefore suspect have /app/design/frontend/<<pacakge>>/<<theme>>/template/default/template/checkout/onepage/billing.phtml

edit

sorry give wrong way want alternate way simple manage admin

just go system -> configuration -> customer -> customer configuration -> select html block manage

enter image description here

just change order of fields.

please see above image have idea on that, change display address in system.

so if want go solution can, , if wish customize create template file use of <?php echo $this->getbilling() ?> array print.

it comes frontend/base/default/template/checkout/onepage/progress.phtml

hope understand scenario.


Comments