mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
16 lines
519 B
Text
16 lines
519 B
Text
add_action( 'wp_footer', 'wc_conditionally_hide_show_checkout_field', 9999 );
|
|
|
|
function wc_conditionally_hide_show_checkout_field() {
|
|
if ( ! is_checkout() ) return;
|
|
?>
|
|
<script type="text/javascript">
|
|
jQuery('#billing_company').keyup(function() {
|
|
if (jQuery(this).val().length == 0) {
|
|
jQuery('#billing_phone_test_field').hide();
|
|
} else {
|
|
jQuery('#billing_phone_test_field').show();
|
|
}
|
|
}).keyup();
|
|
</script>
|
|
<?php
|
|
}
|