There are a couple of options, although the core file does not lend itself to easily hiding just part of each area.
If you don't care about showing the Shipping Method or the Payment Method, you could use:
Code:
#myAccountShipInfo, #myAccountPaymentInfo { display: none;
}
The code to just remove the Delivery Address and Billing Address is:
Code:
#myAccountShipInfo h3, #myAccountPaymentInfo h3, #myAccountShipInfo address, #myAccountPaymentInfo address { display: none;
}
Whichever you choose should be added in the css/site_specific_styles.php for your template.
https://docs.zen-cart.com/user/custo...ting-overrides