Booking Form

Add hook code to functions.php file in child theme

1: Phone field is required in booking form

add_filter( 'el_checkout_required_phone', function(){ return 'true'; } );

2: Address field is required in booking form

add_filter( 'el_checkout_required_address', function(){ return 'true'; } );

Last updated