Got a question? Don’t worry! We’re just a phone call away. Reach out to us at +91 98317 04022 or +91 93315 55220 for any queries or assistance you need!
256-Bit Bank Level Security
100% Secure Payments
Fun With Confidence
0Trusted by more than 50000+ visitors
In house bar and restaurant
Top-notch Customer Service
Endless Fun for All Ages
Safety and Cleanliness Assurance
50000+ Happy Visitors
Abhishek Ghosh
★★★★★5/5
“They have a restaurant that offers Indian, Chinese and Biryani in a good rate.”
Arijit Ghose
★★★★★5/5
“Highly recommended, we will definitely comeback again and again with my whole family ❤️,this is my 4th time here and every single visit we stay min 2days and yet if there’s a chance we always extend our stay here”
// Custom validation for Billing Phone checkout field
add_action('woocommerce_checkout_process', 'custom_validate_billing_phone');
function custom_validate_billing_phone() {
$is_correct = preg_match('/^[0-9]{6,20}$/', $_POST['billing_phone']);
if ( $_POST['billing_phone'] && !$is_correct) {
wc_add_notice( __( 'The Phone field should be between 6 and 20 digits.' ), 'error' );
}
}