{"id":289,"date":"2025-11-25T11:00:37","date_gmt":"2025-11-25T11:00:37","guid":{"rendered":"https:\/\/lightskyblue-woodcock-148784.hostingersite.com\/?page_id=289"},"modified":"2026-01-29T12:40:56","modified_gmt":"2026-01-29T12:40:56","slug":"satis-noktalari","status":"publish","type":"page","link":"https:\/\/ryohome.com.tr\/en\/satis-noktalari\/","title":{"rendered":"Points of Sale"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><div id=\"custom-page-banner\" data-vc-full-width=\"true\" data-vc-full-width-temp=\"true\" data-vc-full-width-init=\"false\" data-vc-stretch-content=\"true\" class=\"vc_row wpb_row vc_row-fluid vc_custom_1769432776256 vc_row-no-padding wd-rs-697766c28342c\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\">\t\t<div id=\"wd-69258f4a09537\" class=\"wd-text-block wd-wpb reset-last-child wd-rs-69258f4a09537 text-left\">\n\t\t\t<div class=\"custom-breadcrumb-content\">\n<p><a href=\"\/en\/\">Ana Sayfa<\/a><\/p>\n<div class=\"link-spacer\">\/<\/div>\n<p><a href=\"\/en\/satis-noktalari\/\">Points of Sale<\/a><\/p>\n<\/div>\n<div class=\"title-cont\">\n<h1>Points of Sale<\/h1>\n<\/div>\n\t\t<\/div>\n\t\t<\/div><\/div><\/div><\/div><div class=\"vc_row-full-width vc_clearfix\"><\/div><div id=\"sales-points\" class=\"vc_row wpb_row vc_row-fluid vc_custom_1764069399971 wd-rs-692590130fcb4\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\">\n\t<div class=\"wpb_raw_code wpb_raw_html wpb_content_element\" >\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<form action=\"\">\n    <div class=\"country-first\">\n        <label for=\"country\">\u015eehirler<\/label>\n        <select id=\"country\" name=\"country\" onchange=\"onCountryChange()\">\n            <option value=\"\" selected>T\u00fcm \u015eehirler<\/option>\n            <option value=\"istanbul\">\u0130stanbul<\/option>\n            <option value=\"denizli\">Deniz<\/option>\n        <\/select>\n    <\/div>\n    <div class=\"city-first\">\n        <label for=\"city\">Points of Sale<\/label>\n        <select id=\"city\" name=\"city\" onchange=\"onCityChange()\">\n            <option value=\"\" selected>T\u00fcm Sat\u0131\u015f Noktalar\u0131<\/option>\n        <\/select>\n    <\/div>\n<input type=\"hidden\" name=\"trp-form-language\" value=\"en\"\/><\/form>\n\n<div id=\"contactList\">\n    <!-- Addresses will be listed here -->\n<\/div>\n\n<script>\n    const cityData = {\n        istanbul: {\n\n            istanbul: {\n                name: \"RyoHome Masko Ma\u011faza\",\n                address: \"Ba\u015fak\u015fehir Masko San. Sit. \u0130kitelli Osb No:3 Blok:15, D:B, 34490 Ba\u015fak\u015fehir\/\u0130stanbul\",\n                phone: [\"+902126750963\"],\n                email: \"info@ryohome.com.tr\",\n                map: \"https:\/\/maps.app.goo.gl\/u7PExfpbG8D4xDaQA\"\n\n            },\n            istanbul2: {\n                name: \"RyoHome Fabrika\",\n                address: \"https:\/\/maps.app.goo.gl\/u7PExfpbG8D4xDaQA\",\n                phone: [\"+905338965759\"],\n                email: \"info@ryohome.com.tr\",\n                map: \"https:\/\/maps.app.goo.gl\/xi8JUFBTqnsfYLrYA\"\n\n            },\n        },\n            denizli: {\n\n            denizli: {\n                name: \"RyoHome Denizli Ma\u011faza\",\n                address: \"Asmal\u0131evler, S\u00fcleyman Demirel Cd. NO:71\/A, 20160 Pamukkale\/Denizli\",\n                phone: [\"+905322312985\"],\n                email: \"denizli@ryohome.com.tr\",\n                map: \"https:\/\/maps.app.goo.gl\/LeFBt3Hmzpwkvqo37\"\n\n            },\n        },\n\n    };\n\n    function renderAddresses(filterCountry = \"\", filterCity = \"\") {\n        const contactListDiv = document.getElementById(\"contactList\");\n        contactListDiv.innerHTML = \"\"; \/\/ \u00d6nce mevcut listeyi temizle\n\n        Object.keys(cityData).forEach(countryKey => {\n            if (filterCountry && filterCountry !== countryKey) return;\n\n            Object.keys(cityData[countryKey]).forEach(cityKey => {\n                if (filterCity && filterCity !== cityKey && filterCity !== \"\") return;\n\n                const cityInfo = cityData[countryKey][cityKey];\n                const contactDiv = document.createElement(\"div\");\n                contactDiv.className = \"contact-item\";\n\n                const phoneLinks = cityInfo.phone.map((phone, index) =>\n                    `<p><strong>Telefon:<\/strong> <a href=\"tel:${phone}\">${phone}<\/a><\/p>`\n                ).join('');\n\n                let emailLink = \"\";\n                if (cityInfo.email) {\n                    emailLink = `<p><strong>Email:<\/strong> <a href=\"mailto:${cityInfo.email}\">${cityInfo.email}<\/a><\/p>`;\n                }\n\n                let mapLink = \"\";\n                if (cityInfo.map) {\n                    mapLink = `<p><a href=\"${cityInfo.map}\" target=\"_blank\">Haritada G\u00f6r<\/a><\/p>`;\n                }\n\n                contactDiv.innerHTML = `\n                <h3>${cityInfo.name}<\/h3>\n                <p><strong>Adres:<\/strong> ${cityInfo.address}<\/p>\n                ${phoneLinks}\n                ${emailLink}\n                ${mapLink ? mapLink : \"\"}\n                <hr>\n            `;\n\n                contactListDiv.appendChild(contactDiv);\n            });\n        });\n    }\n\n    function onCountryChange() {\n        const countrySelect = document.getElementById(\"country\");\n        const citySelect = document.getElementById(\"city\");\n        const selectedCountry = countrySelect.value;\n\n        \/\/ \u015eehir listesini s\u0131f\u0131rla\n        citySelect.innerHTML = '<option value=\"\" selected>T\u00fcm Sat\u0131\u015f Noktalar\u0131<\/option>';\n\n        \/\/ E\u011fer \"T\u00fcm \u00dclkeler\" se\u00e7iliyse, t\u00fcm \u015fehirler t\u00fcm \u00fclkeler i\u00e7in g\u00f6sterilsin\n        if (selectedCountry === \"\") {\n            Object.keys(cityData).forEach(countryKey => {\n                Object.keys(cityData[countryKey]).forEach(cityKey => {\n                    const city = cityData[countryKey][cityKey];\n                    const option = document.createElement(\"option\");\n                    option.value = cityKey;\n                    option.text = city.name;\n                    citySelect.add(option);\n                });\n            });\n        } else if (selectedCountry && cityData[selectedCountry]) {\n            \/\/ E\u011fer belirli bir \u00fclke se\u00e7ildiyse, o \u00fclkenin \u015fehirlerini g\u00f6ster\n            Object.keys(cityData[selectedCountry]).forEach(cityKey => {\n                const city = cityData[selectedCountry][cityKey];\n                const option = document.createElement(\"option\");\n                option.value = cityKey;\n                option.text = city.name;\n                citySelect.add(option);\n            });\n        }\n\n        \/\/ \u00dclkeye g\u00f6re filtrele\n        renderAddresses(selectedCountry);\n    }\n\n    function onCityChange() {\n        const countrySelect = document.getElementById(\"country\");\n        const citySelect = document.getElementById(\"city\");\n\n        const selectedCountry = countrySelect.value;\n        const selectedCity = citySelect.value;\n\n        renderAddresses(selectedCountry, selectedCity);\n    }\n\n    \/\/ Sayfa y\u00fcklendi\u011finde t\u00fcm adresleri g\u00f6ster\n    document.addEventListener(\"DOMContentLoaded\", () => {\n        \/\/ Sayfa y\u00fcklendi\u011finde country de\u011fi\u015fikli\u011fini sim\u00fcle et\n        onCountryChange();\n    });\n\n\n<\/script>\n\t\t<\/div>\n\t<\/div>\n<\/div><\/div><\/div><\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"Ana Sayfa \/ Sat\u0131\u015f Noktalar\u0131 Sat\u0131\u015f Noktalar\u0131 \u015eehirler T\u00fcm \u015eehirler \u0130stanbul Deniz Sat\u0131\u015f Noktalar\u0131 T\u00fcm Sat\u0131\u015f Noktalar\u0131","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-289","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/ryohome.com.tr\/en\/wp-json\/wp\/v2\/pages\/289","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ryohome.com.tr\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ryohome.com.tr\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ryohome.com.tr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ryohome.com.tr\/en\/wp-json\/wp\/v2\/comments?post=289"}],"version-history":[{"count":13,"href":"https:\/\/ryohome.com.tr\/en\/wp-json\/wp\/v2\/pages\/289\/revisions"}],"predecessor-version":[{"id":662,"href":"https:\/\/ryohome.com.tr\/en\/wp-json\/wp\/v2\/pages\/289\/revisions\/662"}],"wp:attachment":[{"href":"https:\/\/ryohome.com.tr\/en\/wp-json\/wp\/v2\/media?parent=289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}