添加一个复选框以显示/隐藏Woocommerce中的结帐字段

时间:2019-02-18 19:23:18

标签: php jquery wordpress woocommerce checkout

让我们略过场景:

客户在结帐页面上,并且有一个带有文本的复选框:“这是礼物吗?”

如果选中此复选框,则下面的字段会逐渐淡入以做笔记。

基于此线程和其他一些线程,这是我的代码:

add_filter( 'woocommerce_checkout_fields' , 'display_checkbox_and_new_checkout_field' );   
function display_checkbox_and_new_checkout_field( $fields ) {

    $fields['billing']['checkbox_trigger'] = array(
        'type'      => 'checkbox',
        'label'     => __('Checkbox label', 'woocommerce'),
        'class'     => array('form-row-wide'),
        'clear'     => true
    );  

    $fields['billing']['new_billing_field'] = array(
        'label'     => __('New Billing Field Label', 'woocommerce'),
        'placeholder'   => _x('New Billing Field Placeholder', 'placeholder', 'woocommerce'),
        'class'     => array('form-row-wide'),
        'clear'     => true
    );

    return $fields;
}

add_action( 'woocommerce_after_checkout_form', 'conditionally_hide_show_new_field', 6 );
function conditionally_hide_show_new_field() {
      ?>
        <script type="text/javascript">
            jQuery('input#checkbox_trigger').change(function(){

                if (this.checked) {
                    jQuery('#new_billing_field_field').fadeOut();
                    jQuery('#new_billing_field_field input').val('');           
                } else {
                    jQuery('#new_billing_field_field').fadeIn();
                }

            });
        </script>
    <?php
}

问题是当已选中复选框时应淡入的字段。

如何更改脚本以使其在加载时不可见?

1 个答案:

答案 0 :(得分:0)

请尝试以下操作:

add_action( 'woocommerce_before_checkout_form', 'conditionally_show_hide_checkout_field' );
function conditionally_show_hide_checkout_field() {
    ?>
    <style>
    p#new_billing_field_field.on { display:none !important; }
    </style>

    <script type="text/javascript">
    jQuery(function($){
        var a = 'input#checkbox_trigger',   b = '#new_billing_field_field'

        $(a).change(function(){
            if ( $(this).prop('checked') === true && $(b).hasClass('on') ) {
                $(b).show(function(){
                    $(b).css({'display':'none'}).removeClass('on').show();
                });
            }
            else if ( $(this).prop('checked') !== true && ! $(b).hasClass('on') ) {
                $(b).fadeOut(function(){
                    $(b).addClass('on')
                });
                $(b+' input').val('');
            }
        });
    });
    </script>
    <?php
}

add_filter( 'woocommerce_checkout_fields', 'add_custom_checkout_fields' );
function add_custom_checkout_fields( $fields ) {

    $fields['billing']['checkbox_trigger'] = array(
        'type'      => 'checkbox',
        'label'     => __('Checkbox label', 'woocommerce'),
        'class'     => array('form-row-wide'),
        'clear'     => true
    );

    $fields['billing']['new_billing_field'] = array(
        'label'     => __('New Billing Field Label', 'woocommerce'),
        'placeholder'   => _x('New Billing Field Placeholder', 'placeholder', 'woocommerce'),
        'class'     => array('form-row-wide on'),
        'clear'     => true
    );

    return $fields;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。