dongtuo3795 2019-04-30 07:51
浏览 83
已采纳

在WooCommerce中添加/删除自定义费用的复选框字段

Need to add custom fee to cart based on form checkbox element. Current action based on product category in cart works great and adds custom delivery fee but customer has option to pickup order which is free. Can checkbox checked for delivery trigger WooCommerce add custom fee action?

Using example from "perform an action on checkbox checked or unchecked event on html form" can .change(function) function delivery(id){ if(this.checked) { add_action for custom cart fee?

 add_action( 'woocommerce_cart_calculate_fees', 'add_a_custom_fee', 10, 1 );
function add_a_custom_fee( $cart ) {
        $amount = 25;
        $cart->add_fee( __('Custom fee'), $amount );
}

Expected custom cart fee to appear in cart when checkbox checked.

  • 写回答

1条回答 默认 最新

  • douxian1770 2019-04-30 10:50
    关注

    The following code will display a checkbox field on checkout page that will enable/disable a custom fee:

    // Display a checkbox field after billing fields
    add_action( 'woocommerce_after_checkout_billing_form', 'add_custom_checkout_checkbox', 20 );
    function add_custom_checkout_checkbox(){
    
        woocommerce_form_field( 'custom_fee', array(
            'type'  => 'checkbox',
            'label' => __(' Custom fee'),
            'class' => array( 'form-row-wide' ),
        ), '' );
    }
    
    // Remove "(optional)" label on checkbox field
    add_filter( 'woocommerce_form_field' , 'remove_order_comments_optional_fields_label', 10, 4 );
    function remove_order_comments_optional_fields_label( $field, $key, $args, $value ) {
        // Only on checkout page for Order notes field
        if( 'custom_fee' === $key && is_checkout() ) {
            $optional = '&nbsp;<span class="optional">(' . esc_html__( 'optional', 'woocommerce' ) . ')</span>';
            $field = str_replace( $optional, '', $field );
        }
        return $field;
    }
    
    // Ajax / jQuery script
    add_action( 'wp_footer', 'custom_fee_script' );
    function custom_fee_script() {
        // On checkoutpage
        if( ( is_checkout() && ! is_wc_endpoint_url() ) ) :
        ?>
        <script type="text/javascript">
        jQuery( function($){
            if (typeof woocommerce_params === 'undefined')
                return false;
    
            console.log('defined');
    
            $('input[name=custom_fee]').click( function(){
                var fee = $(this).prop('checked') === true ? '1' : '';
    
                $.ajax({
                    type: 'POST',
                    url: woocommerce_params.ajax_url,
                    data: {
                        'action': 'custom_fee',
                        'custom_fee': fee,
                    },
                    success: function (result) {
                        $('body').trigger('update_checkout');
                        console.log(result);
                    },
                });
            });
        });
        </script>
        <?php
        endif;
    }
    
    // Get the ajax request and set value to WC session
    add_action( 'wp_ajax_custom_fee', 'get_ajax_custom_fee' );
    add_action( 'wp_ajax_nopriv_custom_fee', 'get_ajax_custom_fee' );
    function get_ajax_custom_fee() {
        if ( isset($_POST['custom_fee']) ) {
            WC()->session->set('custom_fee', ($_POST['custom_fee'] ? '1' : '0') );
            echo WC()->session->get('custom_fee');
        }
        die();
    }
    
    // Add / Remove a custom fee
    add_action( 'woocommerce_cart_calculate_fees', 'add_remove_custom_fee', 10, 1 );
    function add_remove_custom_fee( $cart ) {
        // Only on checkout
        if ( ( is_admin() && ! defined( 'DOING_AJAX' ) ) || is_cart() )
            return;
    
        $fee_amount = 25;
    
        if( WC()->session->get('custom_fee') )
            $cart->add_fee( __( 'Custom fee', 'woocommerce'), $fee_amount );
    }
    

    Code goes in function.php file of your active child theme (or active theme). Tested and works.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 gki vendor hook
  • ¥15 centos7中sudo命令无法使用
  • ¥15 灰狼算法和蚁群算法如何结合
  • ¥15 这是一个利用ESP32自带按键和LED控制的录像代码,编译过程出现问题,请解决并且指出错误,指导如何处理 ,协助完成代码并上传代码
  • ¥20 stm32f103,hal库 hal_usart_receive函数接收不到数据。
  • ¥20 求结果和代码,sas利用OPTEX程序和D-efficiency生成正交集
  • ¥50 adb连接不到手机是怎么回事?
  • ¥20 抓取数据时发生错误: get_mooncake_data() missing 1 required positional argument: 'driver'的问题,怎么改出正确的爬虫代码?
  • ¥15 vs2022无法联网
  • ¥15 TCP的客户端和服务器的互联