{"id":1595,"date":"2026-05-29T08:27:31","date_gmt":"2026-05-29T06:27:31","guid":{"rendered":"https:\/\/nosha.sk\/withdrawal-from-the-contract\/"},"modified":"2026-05-29T08:27:31","modified_gmt":"2026-05-29T06:27:31","slug":"withdrawal-from-the-contract","status":"publish","type":"page","link":"https:\/\/nosha.sk\/en\/withdrawal-from-the-contract\/","title":{"rendered":"Withdrawal from the contract"},"content":{"rendered":"<style>\n.wodst-wrap { max-width:560px; margin:0 auto; font-family:inherit; }\n.wodst-field { margin-bottom:18px; }\n.wodst-field label { display:block; font-weight:600; font-size:14px; margin-bottom:6px; }\n.wodst-field label .opt { font-weight:400; color:#999; font-size:12px; }\n.wodst-field input,\n.wodst-field textarea {\n    width:100%; padding:10px 13px; border:1.5px solid #ccc;\n    border-radius:5px; font-size:14px; box-sizing:border-box; font-family:inherit;\n}\n.wodst-field input:focus,\n.wodst-field textarea:focus { outline:none; border-color:#c0392b; }\n.wodst-field textarea { min-height:80px; resize:vertical; }\n.wodst-btn {\n    width:100%; padding:13px; background:#000000 !important; color:#fff !important; border:none;\n    border-radius:5px; font-size:15px; font-weight:700; cursor:pointer; font-family:inherit;\n}\n.wodst-btn:hover { background:#000000 !important; opacity:.88; }\n.wodst-btn:disabled { background:#bbb !important; cursor:not-allowed; }\n.wodst-msg { padding:13px 16px; border-radius:5px; margin-bottom:18px; font-size:14px; display:none; }\n.wodst-msg.ok  { background:#e8f8ec; color:#1e7e34; border:1px solid #b3dfc0; }\n.wodst-msg.err { background:#fde8e8; color:#c0392b; border:1px solid #f5c6c6; }\n.wodst-legal { font-size:11px; color:#aaa; margin-top:14px; line-height:1.6; }\n<\/style>\n\n<div class=\"wodst-wrap\">\n    <div class=\"wodst-msg ok\" id=\"wodst-ok\"><\/div>\n    <div class=\"wodst-msg err\" id=\"wodst-err\"><\/div>\n\n    <form id=\"wodst-form\">\n        <div class=\"wodst-field\">\n            <label for=\"wodst-order\">Order number<\/label>\n            <input type=\"text\" id=\"wodst-order\" placeholder=\"e.g. 1234\"\n                   value=\"\">\n        <\/div>\n\n        <div class=\"wodst-field\">\n            <label for=\"wodst-email\">E-mail from the order<\/label>\n            <input type=\"email\" id=\"wodst-email\" placeholder=\"vas@email.sk\"\n                   value=\"\">\n        <\/div>\n\n                <div class=\"wodst-field\">\n            <label for=\"wodst-iban\">IBAN for refund<\/label>\n            <input type=\"text\" id=\"wodst-iban\" placeholder=\"SK00 0000 0000 0000 0000 0000 0000\" maxlength=\"34\">\n        <\/div>\n        \n        <div class=\"wodst-field\">\n            <label for=\"wodst-reason\">Reason for withdrawal <span class=\"opt\">(optional)<\/span><\/label>\n            <textarea id=\"wodst-reason\" placeholder=\"E.g. the goods do not correspond to the description... \"><\/textarea>\n        <\/div>\n\n        <div style=\"display:none !important;visibility:hidden;position:absolute;left:-9999px;\" aria-hidden=\"true\">\n            <label for=\"wodst-website\">Do not fill in this field<\/label>\n            <input type=\"text\" id=\"wodst-website\" name=\"website\" tabindex=\"-1\" autocomplete=\"off\">\n        <\/div>\n\n        <button type=\"button\" class=\"wodst-btn\" id=\"wodst-btn\">\n            Confirm withdrawal from the contract        <\/button>\n\n        <p class=\"wodst-legal\">\n            By submitting the form, you exercise the right to withdraw from the contract concluded at a distance in accordance with Act No. 108\/2024 Coll. and EU Directive 2023\/2673. The period of 14 days runs from the date of receipt of the goods. After dispatch, we will send you a confirmation email with an accurate time stamp. We process the personal data provided in this form in order to process the withdrawal request.            <\/p>\n    <\/form>\n<\/div>\n\n<script>\ndocument.getElementById('wodst-btn').addEventListener('click', function() {\n    var btn   = this;\n    var okEl  = document.getElementById('wodst-ok');\n    var errEl = document.getElementById('wodst-err');\n    okEl.style.display = errEl.style.display = 'none';\n\n    var orderId = document.getElementById('wodst-order').value.trim();\n    var email   = document.getElementById('wodst-email').value.trim();\n    var ibanEl  = document.getElementById('wodst-iban');\n    var reasonEl= document.getElementById('wodst-reason');\n    var iban    = ibanEl   ? ibanEl.value.trim()   : '';\n    var reason  = reasonEl ? reasonEl.value.trim() : '';\n\n    if ( !orderId ) { return show('Enter your order number.'); }\n    if ( !email )   { return show('Enter your email address.'); }\n    if ( ibanEl && !iban ) { return show('Enter IBAN for the refund.'); }\n\n    var honeypot = document.getElementById('wodst-website');\n    if ( honeypot && honeypot.value !== '' ) { return; }\n\n    btn.disabled = true;\n    btn.textContent = 'I\\'m sending...';\n\n    var data = new FormData();\n    data.append('action',   'wodst_submit');\n    data.append('nonce',    'f55e7a211f');\n    data.append('order_id', orderId);\n    data.append('email',    email);\n    data.append('iban',     iban);\n    data.append('website',  honeypot ? honeypot.value : '');\n\n    fetch('https:\/\/nosha.sk\/wp-admin\/admin-ajax.php', { method: 'POST', body: data })\n        .then(function(r) { return r.json(); })\n        .then(function(res) {\n            if (res.success) {\n                document.getElementById('wodst-form').style.display = 'none';\n                okEl.innerHTML = res.data.message;\n                okEl.style.display = 'block';\n            } else {\n                show(res.data && res.data.message ? res.data.message : 'I think it\\'s time. Try again. ');\n                btn.disabled = false;\n                btn.textContent = 'Confirm withdrawal from the contract';\n            }\n        })\n        .catch(function() {\n            show('Network error. Try again. ');\n            btn.disabled = false;\n            btn.textContent = 'Confirm withdrawal from the contract';\n        });\n\n    function show(msg) { errEl.textContent = msg; errEl.style.display = 'block'; }\n});\n<\/script>\n\n","protected":false},"excerpt":{"rendered":"Order number E-mail from the order IBAN for refund Reason for withdrawal (optional) Do not fill in this field Confirm","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1595","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Withdrawal from the contract - nosha<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nosha.sk\/withdrawal-from-the-contract\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Withdrawal from the contract - nosha\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nosha.sk\/withdrawal-from-the-contract\/\" \/>\n<meta property=\"og:site_name\" content=\"nosha\" \/>\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\":\"WebPage\",\"@id\":\"https:\\\/\\\/nosha.sk\\\/withdrawal-from-the-contract\\\/\",\"url\":\"https:\\\/\\\/nosha.sk\\\/withdrawal-from-the-contract\\\/\",\"name\":\"Withdrawal from the contract - nosha\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nosha.sk\\\/#website\"},\"datePublished\":\"2026-05-29T06:27:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nosha.sk\\\/withdrawal-from-the-contract\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nosha.sk\\\/withdrawal-from-the-contract\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nosha.sk\\\/withdrawal-from-the-contract\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nosha.sk\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Withdrawal from the contract\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nosha.sk\\\/#website\",\"url\":\"https:\\\/\\\/nosha.sk\\\/\",\"name\":\"nosha\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nosha.sk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Withdrawal from the contract - nosha","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:\/\/nosha.sk\/withdrawal-from-the-contract\/","og_locale":"en_US","og_type":"article","og_title":"Withdrawal from the contract - nosha","og_url":"https:\/\/nosha.sk\/withdrawal-from-the-contract\/","og_site_name":"nosha","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/nosha.sk\/withdrawal-from-the-contract\/","url":"https:\/\/nosha.sk\/withdrawal-from-the-contract\/","name":"Withdrawal from the contract - nosha","isPartOf":{"@id":"https:\/\/nosha.sk\/#website"},"datePublished":"2026-05-29T06:27:31+00:00","breadcrumb":{"@id":"https:\/\/nosha.sk\/withdrawal-from-the-contract\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nosha.sk\/withdrawal-from-the-contract\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nosha.sk\/withdrawal-from-the-contract\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nosha.sk\/en\/"},{"@type":"ListItem","position":2,"name":"Withdrawal from the contract"}]},{"@type":"WebSite","@id":"https:\/\/nosha.sk\/#website","url":"https:\/\/nosha.sk\/","name":"nosha","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nosha.sk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/nosha.sk\/en\/wp-json\/wp\/v2\/pages\/1595","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nosha.sk\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nosha.sk\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nosha.sk\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/nosha.sk\/en\/wp-json\/wp\/v2\/comments?post=1595"}],"version-history":[{"count":0,"href":"https:\/\/nosha.sk\/en\/wp-json\/wp\/v2\/pages\/1595\/revisions"}],"wp:attachment":[{"href":"https:\/\/nosha.sk\/en\/wp-json\/wp\/v2\/media?parent=1595"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}