{"id":139,"date":"2023-07-23T20:21:04","date_gmt":"2023-07-23T20:21:04","guid":{"rendered":"https:\/\/morenetcash.com\/?page_id=139"},"modified":"2025-06-30T15:38:21","modified_gmt":"2025-06-30T15:38:21","slug":"contact","status":"publish","type":"page","link":"https:\/\/morenetcash.com\/fi\/contact\/","title":{"rendered":"Yhteystiedot"},"content":{"rendered":"<div class=\"mx-5 sm:mx-0 prose leading-relaxed text-lg mb-5 text-left wp-paragraph\">\n<p>Onko sinulla mieless\u00e4si aihe, jaettavaa palautetta tai jotain lis\u00e4tt\u00e4v\u00e4\u00e4 sis\u00e4lt\u00f6\u00f6mme? Olemme kuulolla. T\u00e4yt\u00e4 vain yll\u00e4 oleva lomake, niin otamme sinuun pian yhteytt\u00e4.<\/p>\n<\/div><div class=\"mx-5 sm:mx-0 prose leading-relaxed text-lg mb-5 text-left wp-paragraph\">\n<p>More Net Cashilla panoksesi auttaa muokkaamaan julkaisujemme sis\u00e4lt\u00f6\u00e4. Olipa kyseess\u00e4 ehdotus, kritiikki tai artikkeli-idea, \u00e4\u00e4nell\u00e4si on merkityst\u00e4 meille ja lukijoille, joita palvelemme.<\/p>\n<\/div><div class=\"mx-5 sm:mx-0 prose leading-relaxed text-lg mb-5 text-left wp-paragraph\">\n<p>K\u00e4sittelemme kaikkia viestej\u00e4 huolellisesti ja luottamuksellisesti. Jakamasi tiedot pysyv\u00e4t meid\u00e4n v\u00e4lisemme, ja k\u00e4yt\u00e4mme niit\u00e4 vain pit\u00e4\u00e4ksemme keskustelun k\u00e4ynniss\u00e4 kunnioittavalla ja tarkoituksenmukaisella tavalla.<\/p>\n<\/div><div class=\"wp-block-lazyblock-contact lazyblock-contact-ysojg\"><script type=\"module\"> import { Application, Controller } from \"\/wp-content\/themes\/twentytwentyone\/assets\/js\/stimulus.min.js\"; let Stimulus = Application.start(); Stimulus.register(\"contact\", class extends Controller { static get targets() { return [ \"name\", \"email\", \"message\", \"button\", \"alertMessage\", \"returnMessage\" ]; } getName() { return this.nameTarget.value; } getEmail() { return this.emailTarget.value; } getMessage() { return this.messageTarget.value; } _beforeSend(response) { response.text().then((result) => { result = JSON.parse(result); this.alertMessageTarget.innerHTML = result.alert; }) } btnSubmitDisabled(event) { if (this.getName() != \"\" && this.getEmail() != \"\" && this.getMessage() != \"\") this.buttonTarget.disabled = false; else this.buttonTarget.disabled = true; } submit() { this.buttonTarget.disabled = true; let adminAjax = location.origin + '\/wp-json\/v1\/send_contact_message'; let objectContact = { name: this.getName(), email: this.getEmail(), message: this.getMessage() }; fetch(adminAjax, { method: 'POST', credentials: 'same-origin', headers: {'Content-Type': 'application\/x-www-form-urlencoded; charset=utf-8'}, body: JSON.stringify(objectContact) }).then(response => this._beforeSend(response)); this.nameTarget.value = ''; this.emailTarget.value = ''; this.messageTarget.value = ''; this.buttonTarget.disabled = false; } }) <\/script><section data-controller=\"contact\" class=\"mx-5 sm:mx-0 text-gray-600 body-font relative\">\n    <div class=\"container px-5 mx-auto\">\n      <div class=\"lg:w-1\/2 md:w-2\/3 mx-auto\">\n        <div class=\"flex flex-wrap -m-2\">\n            <div class=\"p-2 w-1\/2\">\n                <div class=\"relative\">\n                    <label for=\"name\" class=\"leading-7 text-sm text-gray-600\">\n                        YHTEYDENOTTO_NIMI                    <\/label>\n                    <input data-contact-target=\"name\" data-action=\"contact#btnSubmitDisabled\" type=\"text\" id=\"name\" name=\"name\" class=\"w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out\">\n                <\/div>\n            <\/div>\n            <div class=\"p-2 w-1\/2\">\n                <div class=\"relative\">\n                    <label for=\"email\" class=\"leading-7 text-sm text-gray-600\">\n                        YHTEYDENOTTO_S\u00c4HK\u00d6POSTI                    <\/label>\n                    <input data-contact-target=\"email\" data-action=\"contact#btnSubmitDisabled\" type=\"email\" id=\"email\" name=\"email\" class=\"w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out\">\n                <\/div>\n            <\/div>\n            <div class=\"p-2 w-full\">\n                <div class=\"relative\">\n                    <label for=\"message\" class=\"leading-7 text-sm text-gray-600\">\n                        YHTEYSVIESTI                    <\/label>\n                    <textarea data-contact-target=\"message\" data-action=\"contact#btnSubmitDisabled\" id=\"message\" name=\"message\" class=\"w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 h-32 text-base outline-none text-gray-700 py-1 px-3 resize-none leading-6 transition-colors duration-200 ease-in-out\"><\/textarea>\n                <\/div>\n            <\/div>\n            <div class=\"p-2 w-full\">\n                <button data-contact-target=\"button\" data-action='contact#submit' class=\"flex mx-auto border-0 py-2 px-8 focus:outline-none rounded text-lg disabled:opacity-50\" disabled>\n                    YHTEYDENOTTO_L\u00c4HET\u00c4                <\/button>\n            <\/div>    \n            <div class=\"p-2 w-full pt-4 mt-4 text-center\" data-contact-target=\"alertMessage\">\n                <div role=\"alert\">\n                    <span class=\"block sm:inline\" data-contact-target=\"returnMessage\"><\/span>\n                <\/div>\n            <\/div>            \n        <\/div>\n      <\/div>\n    <\/div>\n<\/section>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Onko sinulla mieless\u00e4si aihe, jaettavaa palautetta tai jotain lis\u00e4tt\u00e4v\u00e4\u00e4 sis\u00e4lt\u00f6\u00f6mme? Olemme valmiita kuuntelemaan. T\u00e4yt\u00e4 vain yll\u00e4 oleva lomake, niin otamme sinuun pian yhteytt\u00e4. More Net Cashilla panoksesi auttaa muokkaamaan julkaisujemme sis\u00e4lt\u00f6\u00e4. Olipa kyseess\u00e4 ehdotus, kritiikki tai artikkeli-idea, \u00e4\u00e4nell\u00e4si on merkityst\u00e4\u2026 <a class=\"more-link\" href=\"https:\/\/morenetcash.com\/fi\/contact\/\">Jatka lukemista <span class=\"screen-reader-text\">Yhteystiedot<\/span><\/a><\/p>","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Contact - More Net Cash<\/title>\n<meta name=\"description\" content=\"If you have any suggestions for topics, critiques, or content to contribute to our library of articles, your ideas are highly appreciated. Feel free to fill in the details in the form below, and our team will get back to you as soon as possible\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/morenetcash.com\/fi\/contact\/\" \/>\n<meta property=\"og:locale\" content=\"fi_FI\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Contact - More Net Cash\" \/>\n<meta property=\"og:description\" content=\"If you have any suggestions for topics, critiques, or content to contribute to our library of articles, your ideas are highly appreciated. Feel free to fill in the details in the form below, and our team will get back to you as soon as possible\" \/>\n<meta property=\"og:url\" content=\"https:\/\/morenetcash.com\/fi\/contact\/\" \/>\n<meta property=\"og:site_name\" content=\"More Net Cash\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-30T15:38:21+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/morenetcash.com\/#organization\",\"name\":\"More Net Cash\",\"url\":\"https:\/\/morenetcash.com\/\",\"sameAs\":[],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fi\",\"@id\":\"https:\/\/morenetcash.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/morenetcash.com\/wp-content\/uploads\/2023\/07\/More-Net-Cash-logo-copy.jpg\",\"contentUrl\":\"https:\/\/morenetcash.com\/wp-content\/uploads\/2023\/07\/More-Net-Cash-logo-copy.jpg\",\"width\":378,\"height\":164,\"caption\":\"More Net Cash\"},\"image\":{\"@id\":\"https:\/\/morenetcash.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/morenetcash.com\/#website\",\"url\":\"https:\/\/morenetcash.com\/\",\"name\":\"More Net Cash\",\"description\":\"Financial Products Reviews\",\"publisher\":{\"@id\":\"https:\/\/morenetcash.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/morenetcash.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"fi\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/morenetcash.com\/contact\/#webpage\",\"url\":\"https:\/\/morenetcash.com\/contact\/\",\"name\":\"Contact - More Net Cash\",\"isPartOf\":{\"@id\":\"https:\/\/morenetcash.com\/#website\"},\"datePublished\":\"2023-07-23T20:21:04+00:00\",\"dateModified\":\"2025-06-30T15:38:21+00:00\",\"description\":\"If you have any suggestions for topics, critiques, or content to contribute to our library of articles, your ideas are highly appreciated. Feel free to fill in the details in the form below, and our team will get back to you as soon as possible\",\"breadcrumb\":{\"@id\":\"https:\/\/morenetcash.com\/contact\/#breadcrumb\"},\"inLanguage\":\"fi\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/morenetcash.com\/contact\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/morenetcash.com\/contact\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/morenetcash.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Contact\"}]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Contact - More Net Cash","description":"If you have any suggestions for topics, critiques, or content to contribute to our library of articles, your ideas are highly appreciated. Feel free to fill in the details in the form below, and our team will get back to you as soon as possible","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/morenetcash.com\/fi\/contact\/","og_locale":"fi_FI","og_type":"article","og_title":"Contact - More Net Cash","og_description":"If you have any suggestions for topics, critiques, or content to contribute to our library of articles, your ideas are highly appreciated. Feel free to fill in the details in the form below, and our team will get back to you as soon as possible","og_url":"https:\/\/morenetcash.com\/fi\/contact\/","og_site_name":"More Net Cash","article_modified_time":"2025-06-30T15:38:21+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/morenetcash.com\/#organization","name":"More Net Cash","url":"https:\/\/morenetcash.com\/","sameAs":[],"logo":{"@type":"ImageObject","inLanguage":"fi","@id":"https:\/\/morenetcash.com\/#\/schema\/logo\/image\/","url":"https:\/\/morenetcash.com\/wp-content\/uploads\/2023\/07\/More-Net-Cash-logo-copy.jpg","contentUrl":"https:\/\/morenetcash.com\/wp-content\/uploads\/2023\/07\/More-Net-Cash-logo-copy.jpg","width":378,"height":164,"caption":"More Net Cash"},"image":{"@id":"https:\/\/morenetcash.com\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/morenetcash.com\/#website","url":"https:\/\/morenetcash.com\/","name":"More Net Cash","description":"Financial Products Reviews","publisher":{"@id":"https:\/\/morenetcash.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/morenetcash.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fi"},{"@type":"WebPage","@id":"https:\/\/morenetcash.com\/contact\/#webpage","url":"https:\/\/morenetcash.com\/contact\/","name":"Contact - More Net Cash","isPartOf":{"@id":"https:\/\/morenetcash.com\/#website"},"datePublished":"2023-07-23T20:21:04+00:00","dateModified":"2025-06-30T15:38:21+00:00","description":"If you have any suggestions for topics, critiques, or content to contribute to our library of articles, your ideas are highly appreciated. Feel free to fill in the details in the form below, and our team will get back to you as soon as possible","breadcrumb":{"@id":"https:\/\/morenetcash.com\/contact\/#breadcrumb"},"inLanguage":"fi","potentialAction":[{"@type":"ReadAction","target":["https:\/\/morenetcash.com\/contact\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/morenetcash.com\/contact\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/morenetcash.com\/"},{"@type":"ListItem","position":2,"name":"Contact"}]}]}},"_links":{"self":[{"href":"https:\/\/morenetcash.com\/fi\/wp-json\/wp\/v2\/pages\/139"}],"collection":[{"href":"https:\/\/morenetcash.com\/fi\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/morenetcash.com\/fi\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/morenetcash.com\/fi\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/morenetcash.com\/fi\/wp-json\/wp\/v2\/comments?post=139"}],"version-history":[{"count":0,"href":"https:\/\/morenetcash.com\/fi\/wp-json\/wp\/v2\/pages\/139\/revisions"}],"wp:attachment":[{"href":"https:\/\/morenetcash.com\/fi\/wp-json\/wp\/v2\/media?parent=139"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}