Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
(function () {
const button = document.getElementById('whatsappButton');
// ====== OFFICE HOURS SETTINGS ======
const startHour = 9; // 9 AM
const endHour = 18; // 6 PM
const workingDays = [1,2,3,4,5]; // Mon–Fri (0=Sun)
const now = new Date();
const hour = now.getHours();
const day = now.getDay();
const isWorkingDay = workingDays.includes(day);
const isWorkingHour = hour >= startHour && hour < endHour;
if (isWorkingDay && isWorkingHour) {
button.style.display = 'block';
}
})();