Advertisement
Gecata1

WooCommerce State fields required

Oct 9th, 2024
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. // State fields required
  2. add_filter('woocommerce_get_country_locale', function($locales){
  3.     $locales['BG']['state']['required'] = true;
  4.     return $locales;
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement