WooCommerce Ödeme sayfasında ki posta kodunu kaldırmak için kodu fonksiyon dosyasına ekleyin.
/**
* @snippet WooCommerce Posta Kodu Kaldırma
* @author KORSAN.xyz
* @testedwith WooCommerce 6.2.2
*/
add_filter( 'woocommerce_checkout_fields' , 'bbloomer_remove_billing_postcode_checkout' );
function bbloomer_remove_billing_postcode_checkout( $fields ) {
unset($fields['billing']['billing_postcode']);
return $fields;
}
Henüz Yorum yok!