validation - wooCommerce checkout page StateCounty (optional) validate not working

admin2025-06-05  1

wooCommerce checkout page State / County (optional) validate not working

that is my added code

 add_filter(‘thwcfd_State_field_override_required’,’__return_true’);

any idea for how to add mandatory for the State / County (optional)

like as State / County (optional)*

look my issue

wooCommerce checkout page State / County (optional) validate not working

that is my added code

 add_filter(‘thwcfd_State_field_override_required’,’__return_true’);

any idea for how to add mandatory for the State / County (optional)

like as State / County (optional)*

look my issue

Share Improve this question edited Nov 30, 2018 at 9:03 core114 asked Nov 30, 2018 at 8:49 core114core114 11512 bronze badges 7
  • 1 hi ok i send solution for you – vikrant zilpe Commented Nov 30, 2018 at 8:55
  • 1 please send state/ country field name – vikrant zilpe Commented Nov 30, 2018 at 9:16
  • 1 See this, function SA_woocommerce_states( $states ) { $states['LK']['CK'] = __('Colombo', 'woocommerce'); $states['LK']['RT'] = __('Kandy', 'woocommerce'); return $states; } – core114 Commented Nov 30, 2018 at 9:17
  • 1 Sri, yesterday you given n some solution for me, look wordpress.stackexchange/questions/320546/… – core114 Commented Nov 30, 2018 at 9:19
  • this shipping form? – vikrant zilpe Commented Nov 30, 2018 at 9:26
 |  Show 2 more comments

1 Answer 1

Reset to default 1

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

add_filter( 'woocommerce_billing_fields', 'woo_filter_state_billing', 10, 1 ); 
function woo_filter_state_billing( $address_fields ) { 
    $address_fields['billing_state']['required'] = true;
    return $address_fields; 
} 

add_filter( 'woocommerce_shipping_fields', 'woo_filter_state_shipping', 10, 1 );
function woo_filter_state_shipping( $address_fields ) { 
    $address_fields['shipping_state']['required'] = true; 
    return $address_fields; 
}
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749129230a316611.html

最新回复(0)