/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
// Bypass WooCommerce state validation for Iran
// (Persian WooCommerce Shipping uses its own numeric state IDs)
add_filter('woocommerce_validate_state', function($validate, $country) {
    if ($country === 'IR') {
        return false;
    }
    return $validate;
}, 10, 2);