Hello.
Just some note, when checking this link, in the details form you can see code that have to be inside of the page. Its seems that during switching to other language, the content of page is updated and there is missing some closing HTML elements, like </div> or some other. Its generate such issues.
Kind Regards.
Hello,
Yes indeed, it seems there is an error in your original page :
You have a self closing tag on the textarea which is not a valid HTML :
Try replacing :
<textarea rows="3" name="details1" id="details1" class="input-xlarge" /></textarea>
By
<textarea rows="3" name="details1" id="details1" class="input-xlarge" ></textarea>
Also Try replacing
<select name="visitors1" id="visitors1" class="input-xlarge wpdev-validates-as-required" />
by
<select name="visitors1" id="visitors1" class="input-xlarge wpdev-validates-as-required" >
You can find these error here : https://validator.w3.org/nu/?doc=http%3A%2F%2Fvakantieinmiddelkerke.be%2Fnu-reserveren
Hope this helps 🙂
If you have any questions you can also answer on support@weglot.com
Hello.
Thank you Remy. Yes, its seems like mistake in Booking Calendar.
Please try to make this small fix (its will be exist in the next update of plugin 8.1.1
Please open this file ../booking/core/admin/page-form-free.php
( you can check how to edit files in WordPress menu in this article http://wpbookingcalendar.com/faq/how-edit-file-in-wp-menu/ )
then find this code:
$my_form.=' <textarea rows="3" name="'. $form_field['name'] . $my_boook_type.'" id="'. $form_field['name'] . $my_boook_type.'" class="input-xlarge'
. ( ( $form_field['required'] == 'On' ) ? ' wpdev-validates-as-required' : '' )
. '" />';
and replace it to this code:
$my_form.=' <textarea rows="3" name="'. $form_field['name'] . $my_boook_type.'" id="'. $form_field['name'] . $my_boook_type.'" class="input-xlarge'
. ( ( $form_field['required'] == 'On' ) ? ' wpdev-validates-as-required' : '' )
. '" >';
and
this code:
$my_form.=' <select name="'. $form_field['name'] . $my_boook_type.'" id="'. $form_field['name'] . $my_boook_type.'" class="input-xlarge'
. ( ( $form_field['required'] == 'On' ) ? ' wpdev-validates-as-required' : '' )
. '" />';
to this:
$my_form.=' <select name="'. $form_field['name'] . $my_boook_type.'" id="'. $form_field['name'] . $my_boook_type.'" class="input-xlarge'
. ( ( $form_field['required'] == 'On' ) ? ' wpdev-validates-as-required' : '' )
. '" >';
Kind Regards.
-
This reply was modified 8 years, 5 months ago by
wpdevelop.
Yes this is it 🙂 It should indeed do the fix. Are you a developer from WPBC ?
Yes, I am.
Thank you for this hint.:)
Kind Regards.
You’re welcome, anytime 🙂