Hello,
Pada saat checkout,bagaimana caranya merubah Zip Postcode pada Ongkoskirim dari "optional" menjadi "requiered", sehingga customer wajib mengisikan kode pos ketika checkout.
Terimakasih.
Hello,
Pada saat checkout,bagaimana caranya merubah Zip Postcode pada Ongkoskirim dari "optional" menjadi "requiered", sehingga customer wajib mengisikan kode pos ketika checkout.
Terimakasih.
By using the forum you are agree with tonjoo studio license agreement
Halo,
Coba tambahkan kode ini pada functions.php
add_filter( ‘woocommerce_default_address_fields’, ‘customising_checkout_fields’, 1000, 1 );
function customising_checkout_fields( $address_fields ) {
$address_fields[‘postcode’][‘required’] = true;
return $address_fields;
}
http://prntscr.com/sspmn5
By using the forum you are agree with tonjoo studio license agreement
Terimakasih atas responnya.
Sudah saya setting sesuai instruksi https://prnt.sc/ssuiqn , tetapi belum bisa merubah zip postcode required di checkout.
http://prnt.sc/ssujtw
Mohon berkenan dibantu.
Terimakasih
By using the forum you are agree with tonjoo studio license agreement
Berikut terlampir
By using the forum you are agree with tonjoo studio license agreement
By using the forum you are agree with tonjoo studio license agreement
Apakah jika saya melakukan update plugin, setting required pada zip postcode ini berubah lagi?
Halo,
Tidak, karena customisasi dilakukan filter, dan kode ditulis di file theme, jadi jika ada ubahan(update) di kode plugin tidak akan mempengaruhi
By using the forum you are agree with tonjoo studio license agreement
Halo,
Kalau updatenya di file theme apakah juga harus ada custom di file functions theme? Terimakasih
By using the forum you are agree with tonjoo studio license agreement