datepicker +2
-
Hi, we need the search datepicker +2, them with more than 48 hours, meaning to block the first two days so clients can’t book.
Where can we insert this code.
$( “#datepicker” ).datepicker({
minDate: 2 // Esto establece el mínimo a 48 horas (2 días) desde la fecha actual
});
———————————————————————————————On frontend .php
$current_time = current_time(‘timestamp’); // Obtiene la fecha y hora actual
$selected_time = strtotime($selected_date); // Convierte la fecha seleccionada a timestamp// Verifica que la fecha seleccionada sea al menos 48 horas en el futuro
if (($selected_time – $current_time) < 48 * 3600) {
wc_add_notice( __(‘Las reservas deben realizarse con al menos 48 horas de antelación.’, ‘bus-booking-manager’), ‘error’ );
return;
}The page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.