GreenSSL adlı üyeden alıntı: mesajı görüntüle
Hayır gerekmiyor.

function custom_disable_postcode_checkout($fields) {    unset($fields['billing']['billing_postcode']);    unset($fields['shipping']['shipping_postcode']);    return $fields; } add_filter('woocommerce_checkout_fields', 'custom_disable_postcode_checkout');
bunu themes klasörü içinde kullanmış olduğun temanın functions.php dosyasının en altına yapıştır kaydet.
egekibar adlı üyeden alıntı: mesajı görüntüle
temanızın funtions.php dosyasına ekleyiniz

add_filter( 'woocommerce_checkout_fields' ,
function ( $fields ) {
    unset($fields['billing']['billing_postcode']);
    unset($fields['shipping']['shipping_postcode']);
    return $fields;
});

Çok teşekkürler uyguluyorum hemen.