In WooCommerce, I'm currently trying to add a conditional custom field in the Checkout that shows a checkbox which if is checked displays an input field to insert an italian fiscal code (Codice Fiscale).
Thanks to various guides and plugin codes I was able to show it in the checkout but i'm doing something wrong with the code and having several issues:
- By default i would like it to be NON required field, only if its checked it must become required.
- If i try to proceed to cart inserting a valid or non codice fiscale i get this error "SyntaxError: Unexpected token < in JSON at position 0" where my theme usually shows checkout errors.
- Display all this only in Italian Language (with WPML)
- I can't know further errors while i can't solve the first two points.
Note: The Italian law requires that if a private customer asks for an invoice he must insert also his (valid) "codice fiscale" (fiscal code).
To avoid complications, I didn't insert any advanced checking tools (that would require more fields, such as birthday). Instead I've set this short control via pattern tag:
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]$");
I've found it on internet but don't really know if it can work. I have alslo this one too:
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;
}
After checking, once the inserted "Codice fiscale" (fiscal code) is good, we can proceed to checkout, displaying for customer and admin this "codice fiscale".
I would need additionally to print this on a PDF invoice using WooCommerce PDF Invoices & Packing Slips Pro plugin (commercial version).
References here (unfortunately can only post 2):
Here the code (added in my theme's functions.php
file):
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>';
}
I will really appreciate if you could help me here.
See Question&Answers more detail:
os