mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://stackoverflow.com/questions/63019847/how-to-remove-shipping-address-from-woocommerce-myaccount-page
7 lines
284 B
Text
7 lines
284 B
Text
add_filter( 'woocommerce_my_account_get_addresses', 'filter_wc_my_account_get_addresses', 10, 2 );
|
|
function filter_wc_my_account_get_addresses( $adresses, $customer_id ) {
|
|
if( isset($adresses['shipping']) ) {
|
|
unset($adresses['shipping']);
|
|
}
|
|
return $adresses;
|
|
}
|