Magento1.9 Onepage Checkout – Remove Billing Address

billing-addressmagento-1.9onepage-checkout

I am trying to remove the Billing address step from the Onepage checkout page in Magento, but facing issues. Can anybody please suggest how to remove the step from checkout page in magento.

I tried in the Core files, but it is showing errors.Thanks in advance.

Best Answer

I have done it by placing default values for the Billing address fields and added the below script in onepage.phtml

billing.save();
document.getElementById('opc-billing').style.display = 'none';

One after implementing this, i have removed the Billing address from Order Email,Order view page in admin.