קלאב אין אילת - חדר סטנדרט

סטנדרט

דברו איתנו…

// Amor - Room Type Label Fix // Translates numeric room_type meta values to Hebrew labels on vacation pages (function() { if (!document.body.classList.contains('single-vacation')) return; var map = {'0': 'סטנדרט', '1': 'דלקס', '2': 'סוויטה', '3': 'סטודיו'}; function fixRoomType() { document.querySelectorAll('.jet-listing-dynamic-field__content').forEach(function(f) { var txt = f.textContent.trim(); if (map[txt] !== undefined) f.textContent = map[txt]; }); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', fixRoomType); } else { fixRoomType(); } })();