I created the custom myaccount page for Woocommerce that you can see in the screenshot below. Now I would like to know how I can remove the Shipping Address (Verzendadres in Dutch) section. I’ve tried overwriting the myaccount.php files on the server but can’t get this to work. I am using this in combination with the Astra theme for WordPress.
Thanks in advance,
2
Answers
If you are having trouble changing the theme directly in wordpress, try going into your customizer through (appearance -> customize) in the administrator dashboard, then selecting "Additional Css", then select the shipping form through css and add
to the shipping field
You can use the
woocommerce_my_account_get_addresses
filter hook to hide shipping address in My account "Addresses" section, this way:Code goes in functions.php file of your active child theme (or active theme). Tested and works.