How to add a heading in between checkout fields of Woocommerce

后端 未结 3 688
感情败类
感情败类 2020-12-11 06:59

I am customizing the WooCommerce checkout page fields. I want to add a heading (text) in between the fields. I have reordered the fields like this

add_filte         


        
3条回答
  •  感情败类
    2020-12-11 07:12

    add_filter('woocommerce_form_field', 'mmodify_wc_checkout_pge', 10, 4);
    
    function mmodify_wc_checkout_pge($field, $key, $args, $value = null) {
    
    
        switch ($key) {
            case 'billing_email':
    
    
                $a = '

    '; return $a . $field; break; default: return $field; break; } }

提交回复
热议问题