add_action('woocommerce_checkout_process', 'validate_bangladeshi_phone_prefix'); function validate_bangladeshi_phone_prefix() { if (isset($_POST['billing_phone'])) { $phone = sanitize_text_field($_POST['billing_phone']); $phone = preg_replace('/\D/', '', $phone); // non-digit remove $valid_prefixes = ['013', '014', '015', '016', '017', '018', '019']; $prefix = substr($phone, 0, 3); $length = strlen($phone); if (!in_array($prefix, $valid_prefixes) || $length !== 11) { wc_add_notice(('⚠ সঠিক ১১ সংখ্যার বাংলাদেশি মোবাইল নাম্বার দিন। (যেমন: 017XXXXXXXX)'), 'error'); } } } add_action('woocommerce_after_checkout_form', 'auto_update_shipping_based_on_city'); function auto_update_shipping_based_on_city() { if (is_checkout() && !is_wc_endpoint_url()) { ?>