mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://wordpress.org/support/topic/how-to-remove-city-and-postcode-columns-on-cart-page/
2 lines
178 B
Text
2 lines
178 B
Text
add_filter( ‘woocommerce_shipping_calculator_enable_city’, ‘__return_false’ );
|
||
add_filter( ‘woocommerce_shipping_calculator_enable_postcode’, ‘__return_false’ );
|