WooCommerce有条件的自定义结帐字段

问题描述:

在WooCommerce中,我目前正在尝试添加一个有条件的自定义字段,显示一个复选框,如果选中显示一个输入字段来插入意大利财政代码(Codice Fiscale)。WooCommerce有条件的自定义结帐字段

由于各种指南和插件的代码我能够证明其在结账但我做一些错误的代码,并有几个问题:

  1. 默认情况下,我想它是不可必填字段,只有在检查它必须成为必需字段的情况下。
  2. 如果我试着继续购物车插入一个有效或非codice fiscale我得到这个错误“SyntaxError:意外的令牌< JSON在位置0”我的主题通常显示检出错误。
  3. 只显示意大利语的所有内容(使用WPML)
  4. 我无法知道更多的错误,而我无法解决前两点。

注:意大利法律规定,如果私人客户要求提供发票,他也必须将他(有效)“税号” (财务代码)

为了避免复杂化,我没有插入任何高级检查工具(这将需要更多的字段,如生日)。相反,我通过设置模式标签这短短的控制:

jQuery('#cf_in').prop('pattern', "^[a-zA-Z]{6}[0-9]{2}[a-zA-Z][0-9]{2}[a-zA-Z][0-9]{3}[a-zA-Z]$"); 

,我找到了互联网上,但真的不知道它是否能正常工作。我有alslo这一个了:

function isCodiceFiscaleValid($valore,$codice_fiscale = true){ 
    $espressione = "^[a-z]{6}[0-9]{2}[a-z][0-9]{2}[a-z][0-9]{3}[a-z]$"; 
    if(!$codice_fiscale){ 
     $espressione = "^[0-9]{11}$"; 
    } 
    if (eregi($espressione, $valore)) 
    { 
     return true; 
    } 
    return false; 
} 

检查后,一旦插入的“税号” (财代码)是好的,我们可以进行结算,显示客户和管理这个“税号”。

我就需要再打印此使用WooCommerce PDF发票&一个PDF发票装箱单临插件(商业版)。这里

引用(遗憾的是只能张贴2):

这里的(在我的主题的functions.php文件添加)代码

add_filter('woocommerce_checkout_fields' , 'cbi_cf_chkbox'); 

function cbi_cf_chkbox ($fields) { 
    if (ICL_LANGUAGE_CODE=='it') 
    $fields['billing']['checkbox_trigger'] = array(
    'type'  => 'checkbox', 
    'label'  => __('Voui la fattura? (solo per privati)', 'cbi-custom-parts'), 
    'class'  => array('form-row-wide'), 
    'clear'  => true 
    ); 

    $fields['billing']['cf_in'] = array(
    'label'  => __('Inserisci il codice fiscale', 'cbi-custom-parts'), 
    'placeholder' => _x('RSSMRA85T10A562S', 'placeholder', 'cbi-custom-parts'), 
    'class'  => array('display-none form-row-wide'), 
    'clear'  => true 
    ); 
    return $fields; 
} 

add_action('woocommerce_after_checkout_form', 'cbi_cf_conditionally_hide_show', 6); 

function cbi_cf_conditionally_hide_show() { 
    if (ICL_LANGUAGE_CODE=='it') 
    ?> 
    <script type="text/javascript"> 
     jQuery('input#checkbox_trigger').change(function(){   
      if (this.checked) { 
       jQuery('#cf_in_field').fadeIn(); 
       jQuery('#cf_in_field').attr('required', true); 
       jQuery('#cf_in').prop('pattern', "^[a-zA-Z]{6}[0-9]{2}[a-zA-Z][0-9]{2}[a-zA-Z][0-9]{3}[a-zA-Z]$"); 
      } else { 
       jQuery('#cf_in_field').fadeOut(); 
       jQuery('#cf_in_field input').val(''); 
       jQuery('#cf_in_field').attr('required', false); 
      } 
     }); 
    </script> 
    <?php 
} 
function isCodiceFiscaleValid($valore,$codice_fiscale = true){ 
    $espressione = "^[a-z]{6}[0-9]{2}[a-z][0-9]{2}[a-z][0-9]{3}[a-z]$"; 
    if(!$codice_fiscale){ 
     $espressione = "^[0-9]{11}$"; 
    } 
    if (eregi($espressione, $valore)) 
    { 
     return true; 
    } 
    return false; 
} 

/* 
* This method processes fields of checkout form 
*/ 
add_action('woocommerce_checkout_process', 'cbi_cf_process'); 
function cbi_cf_process() { 
    if (! empty($_POST['cf_in'])){ 
     $valid_codice_fiscale = isCodiceFiscaleValid($_POST['cf_in'],true); 

     if((!$valid_codice_fiscale)){ 
      wc_add_notice('Wrong data in Codice Fiscale/Partita Iva field', 'error'); 
     } 
    } 
} 

/* 
* This method saves codice fiscale data in order meta and in user meta 
*/ 
add_action('woocommerce_checkout_update_order_meta', 'cbi_cf_in_update_order_meta'); 
function cbi_cf_in_update_order_meta ($order_id) { 
    if (! empty($_POST['cf_in'])) { 
     update_post_meta($order_id, 'cf_in', sanitize_text_field($_POST['cf_in'])); 
     $order = new WC_Order($order_id); 
     update_user_meta($order->user_id, 'cf_in', sanitize_text_field($_POST['cf_in'])); 
    } 
} 

/* 
* This method shows the value of Partita Iva field after billing address 
*/ 
add_action('woocommerce_admin_order_data_after_billing_address', 'cbi_cf_admin_order_data_after_billing_address', 10, 1); 
function cbi_cf_admin_order_data_after_billing_address($order){ 
    echo '<p><strong>'.__('Codice Fiscale', 'cbi-cf-invoice').':</strong> ' . get_post_meta($order->id, 'cf_in', true) . '</p>'; 
} 

如果你能在这里帮助我,我将非常感激。

在这个答案,我不能把PDF发票,所以你会得到这里:

  • 解决条件“必需的”领域的问题(1点)
  • 解决的问题误差(第2点)仅显示意大利语(点3)

  • 另外我有:

    • 重温您的所有代码并纠正许多小错误。
    • 增加了代码,显示和编辑后端的用户配置文件的自定义字段值“税号”:

      enter image description here

    下面是代码:

    add_filter('woocommerce_checkout_fields' , 'cbi_cf_chkbox'); 
    function cbi_cf_chkbox ($fields) { 
        if (ICL_LANGUAGE_CODE !='it') return $fields; // Only for Italy 
    
        $fields['billing']['checkbox_cf'] = array(
         'type'  => 'checkbox', 
         'label'  => __('Voui la fattura? (solo per privati)', 'cbi-custom-parts'), 
         'class'  => array('form-row-wide'), 
         'clear'  => true 
        ); 
    
        $fields['billing']['cf_in'] = array(
         'label'  => __('Inserisci il codice fiscale', 'cbi-custom-parts'), 
         'placeholder' => _x('RSSMRA85T10A562S', 'placeholder', 'cbi-custom-parts'), 
         'class'  => array('form-row-wide'), 
         'clear'  => true 
        ); 
    
        return $fields; 
    } 
    
    add_action('woocommerce_after_checkout_form', 'cbi_cf_conditionally_hide_show', 6); 
    function cbi_cf_conditionally_hide_show() { 
        if (ICL_LANGUAGE_CODE !='it') return; // Only for Italy 
        $required = esc_attr__('required', 'woocommerce'); 
        ?> 
        <script type="text/javascript"> 
         (function($){ 
          var required = '<abbr class="required" title="<?php echo $required; ?>">*</abbr>'; // Required html 
    
          $('#cf_in_field > #cf_in').prop('pattern', "^[a-zA-Z]{6}[0-9]{2}[a-zA-Z][0-9]{2}[a-zA-Z][0-9]{3}[a-zA-Z]$"); // Doesn't seem to do something 
          $('#cf_in_field').hide(); 
    
          $('input#checkbox_cf').change(function(){ 
           if (this.checked) { 
            $('#cf_in_field').fadeIn("fast", function(){ 
             $(this).addClass("validate-required"); 
             $('#cf_in_field > label').append(required); 
            }); 
           } else { 
            $('#cf_in_field').fadeOut("fast", function(){ 
             $(this).removeClass("validate-required"); 
             $('#cf_in_field > label > .required').remove(); 
            }); 
           } 
           $('#cf_in_field').val(''); 
           $('#cf_in_field').removeClass("woocommerce-validated"); 
           $('#cf_in_field').removeClass("woocommerce-invalid woocommerce-invalid-required-field"); 
          }); 
         })(jQuery); 
        </script> 
        <?php 
    } 
    
    // Utility function checking "codice fiscale" validity 
    function is_cf_valid($valore, $codice_fiscale = true){ 
        $espressione = "^[a-z]{6}[0-9]{2}[a-z][0-9]{2}[a-z][0-9]{3}[a-z]$"; 
        if(! $codice_fiscale) $espressione = "^[0-9]{11}$"; 
        return eregi($espressione, $valore) ? true : false; 
    } 
    
    // Check custom fields value "codice fiscale" when submit and return error notices (if needed) 
    add_action('woocommerce_checkout_process', 'cbi_cf_process'); 
    function cbi_cf_process() { 
        if (isset($_POST['checkbox_cf']) && $_POST['checkbox_cf'] == 1) { 
         if(empty($_POST['cf_in'])) { 
          wc_add_notice(__("Please don't forget to enter your Codice Fiscale/Partita Iva", "cbi-custom-parts"), "error"); 
         } else { 
          $valid_codice_fiscale = is_cf_valid($_POST['cf_in']); 
          if((! $valid_codice_fiscale)) 
           wc_add_notice(__("Wrong data in Codice Fiscale/Partita Iva field", "cbi-custom-parts"), "error"); 
         } 
        } 
    } 
    
    // Save the custom field value "codice fiscale" in order meta and in user meta 
    add_action('woocommerce_checkout_update_order_meta', 'cbi_cf_in_update_order_meta'); 
    function cbi_cf_in_update_order_meta ($order_id) { 
        if (empty($_POST['cf_in'])) return; 
    
        $customer_id = get_post_meta($order_id, '_customer_user', true); 
        $user_codice_fiscale = get_user_meta($order_id, 'codice_fiscale', true); 
    
        if(! empty($user_codice_fiscale)) 
         update_user_meta($order->user_id, 'codice_fiscale', sanitize_text_field($_POST['cf_in'])); 
    
        update_post_meta($order_id, '_codice_fiscale', sanitize_text_field($_POST['cf_in'])); 
    } 
    
    // Backend : Display in Order edit pages, after billing address, the custom field value "codice fiscale" 
    add_action('woocommerce_admin_order_data_after_billing_address', 'cbi_cf_admin_order_data_after_billing_address', 10, 1); 
    function cbi_cf_admin_order_data_after_billing_address($order){ 
        $codice_fiscale = get_post_meta($order->get_id(), '_codice_fiscale', true); 
        if(! empty($codice_fiscale)) 
         echo '<p><strong>'.__('Codice Fiscale', 'cbi-cf-invoice').':</strong> ' . $codice_fiscale . '</p>'; 
    } 
    
    // Backend: Display and edit user profile custom field value "codice fiscale" Only for Italy 
    add_action('show_user_profile', 'add_extra_user_codice_fiscale', 1, 1); 
    add_action('edit_user_profile', 'add_extra_user_codice_fiscale', 1, 1); 
    function add_extra_user_codice_fiscale($user) 
    { 
    
        //if(get_user_meta($user->ID, 'billing_country', true) != 'IT') return; // Only for Italy 
        $codice_fiscale = get_user_meta($user->ID, 'codice_fiscale', true); 
        if(empty($codice_fiscale)) $codice_fiscale = ''; 
        ?> 
         <h3><?php _e("Codice fiscale", "cbi-custom-parts"); ?></h3> 
         <table class="form-table"><tr> 
          <th><label for="codice_fiscale"><?php _e("Codice fiscale", "cbi-custom-parts"); ?></label></th> 
          <td><input type="text" name="codice_fiscale" value="<?php echo esc_attr($codice_fiscale); ?>" class="regular-text" /></td> 
         </tr></table><br /> 
        <?php 
    } 
    
    // Backend: Save edited user profile custom field value "codice fiscale" Only for Italy 
    add_action('personal_options_update', 'save_extra_user_codice_fiscale'); 
    add_action('edit_user_profile_update', 'save_extra_user_codice_fiscale'); 
    function save_extra_user_codice_fiscale($user_id) 
    { 
        if(! empty($_POST['codice_fiscale'])) 
         update_user_meta($user_id, 'codice_fiscale', sanitize_text_field($_POST['codice_fiscale'])); 
    } 
    

    代码放在的function.php文件你活跃的孩子主题(或主题),或任何插件文件。

    所有代码都在Woocommerce 3+上测试并正常工作。

  • +0

    首先:非常感谢您帮助我,并利用您的时间掌舵我来解决这个问题。你太善良,天使。 :)我已经尝试过你修改过的代码,并按我的意愿工作,但仍然无论使用何种codisc fiscale,或者如果我填充了一些字符,都会给我提供错误“SyntaxError:意外的令牌 Pietro

    +0

    你好!再次感谢您的帮助,我设法使其工作取消最终不需要的检查。现在,我正在尝试在感谢页面上显示该字段,但该字段仍为白色。这是我的最新结果:https://pastebin.com/fHHKrdXD希望你有时间检查它:)知道这一点,我也知道如何将该字段添加到电子邮件:)很多再次感谢 – Pietro

    +1

    嘿,男人,对不起SO是新的,现在我确实接受了你的回答。好吧,关于ACF稍后我会添加更多信息。非常感谢您的意见和帮助! :) – Pietro