{"id":120,"date":"2025-01-27T18:54:40","date_gmt":"2025-01-27T18:54:40","guid":{"rendered":"https:\/\/kretz.cz\/?page_id=120"},"modified":"2026-08-12T12:52:30","modified_gmt":"2026-08-12T12:52:30","slug":"servis-nahradni-dily","status":"publish","type":"page","link":"https:\/\/kretz.cz\/en\/servis-nahradni-dily\/","title":{"rendered":"Service - spare parts"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><div class=\"vc_row wpb_row vc_row-fluid\"><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_text_column wpb_content_element\" >\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<div class=\"kretz-service-intro\">\n<h2 style=\"text-align: center\">Servis, opravy a n\u00e1hradn\u00ed d\u00edly pro krbov\u00e9 vlo\u017eky<\/h2>\n<p>Zaji\u0161\u0165ujeme n\u00e1hradn\u00ed d\u00edly, opravy a repase krbov\u00fdch vlo\u017eek KRETZ i dal\u0161\u00edch v\u00fdrobc\u016f. Za\u0161lete n\u00e1m informace o vlo\u017ece a popis probl\u00e9mu \u2013 prov\u011b\u0159\u00edme mo\u017enosti \u0159e\u0161en\u00ed.<\/p>\n<ul>\n<li>n\u00e1hradn\u00ed d\u00edly ke krbov\u00fdm vlo\u017ek\u00e1m;<\/li>\n<li>opravy a servis;<\/li>\n<li>repase star\u0161\u00edch krbov\u00fdch vlo\u017eek;<\/li>\n<li>servis vlo\u017eek KRETZ i jin\u00fdch v\u00fdrobc\u016f;<\/li>\n<li>p\u0159edb\u011b\u017en\u00e9 posouzen\u00ed probl\u00e9mu podle dodan\u00fdch informac\u00ed a fotografie.<\/li>\n<\/ul>\n<p><strong>Pro rychlej\u0161\u00ed posouzen\u00ed uve\u010fte v\u00fdrobce, typ krbov\u00e9 vlo\u017eky, p\u0159ibli\u017en\u00fd rok v\u00fdroby a popis z\u00e1vady. Pokud m\u016f\u017eete, p\u0159ilo\u017ete fotografii v\u00fdrobn\u00edho \u0161t\u00edtku nebo po\u0161kozen\u00e9ho m\u00edsta.<\/strong><\/p>\n<\/div>\n<h2 style=\"text-align: center\">Contact form<\/h2>\n\n\t\t<\/div>\n\t<\/div>\n\n\t<div class=\"wpb_raw_code wpb_raw_html wpb_content_element\" >\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<style>.page-id-120 .wpcf7 input[type=\"file\"]{width:100%;box-sizing:border-box;padding:8px;border:0;border-radius:3px;background:#fff;color:#222}.page-id-120 .wpcf7 input[type=\"file\"]::file-selector-button{margin-right:12px;padding:8px 14px;border:0;background:#b22626;color:#fff;cursor:pointer}.page-id-120 .service-upload-help{display:block;margin-top:6px;font-size:13px;line-height:1.4}<\/style><style data-kretz-photo-compression=\"v1\">.page-id-120 .kretz-compression-status{display:block;margin-top:6px;font-size:13px;line-height:1.4;color:#555}.page-id-120 .kretz-compression-status.is-error{color:#b22626;font-weight:700}.page-id-120 .wpcf7-submit[aria-busy=\"true\"]{opacity:.55;cursor:wait}<\/style><script data-kretz-photo-compression=\"v1\">(() => {\n  \"use strict\";\n\n  const FIELD_PREFIX = \"servisni-fotografie-\";\n  const SOURCE_LIMIT = 12 * 1024 * 1024;\n  const OUTPUT_LIMIT = 3 * 1024 * 1024;\n  const MAX_EDGE = 2400;\n  const QUALITIES = [0.86, 0.78, 0.70, 0.62, 0.54];\n  const VERSION = \"kretz-service-compression-v1\";\n  let activeJobs = 0;\n  document.documentElement.dataset.kretzPhotoCompression = VERSION;\n\n  const formatSize = (bytes) => `${(bytes \/ 1024 \/ 1024).toFixed(1).replace(\".\", \",\")} MB`;\n\n  const getStatus = (input) => {\n    const wrapper = input.closest(\".column-full\") || input.parentElement;\n    let status = wrapper.querySelector(`.kretz-compression-status[data-for=\"${input.name}\"]`);\n    if (!status) {\n      status = document.createElement(\"small\");\n      status.className = \"kretz-compression-status\";\n      status.dataset.for = input.name;\n      status.setAttribute(\"aria-live\", \"polite\");\n      input.closest(\".wpcf7-form-control-wrap\").after(status);\n    }\n    return status;\n  };\n\n  const setStatus = (input, message, isError = false) => {\n    const status = getStatus(input);\n    status.textContent = message;\n    status.classList.toggle(\"is-error\", isError);\n  };\n\n  const setBusy = (form, busy) => {\n    activeJobs += busy ? 1 : -1;\n    activeJobs = Math.max(activeJobs, 0);\n    const submit = form.querySelector('.wpcf7-submit');\n    if (submit) {\n      submit.disabled = activeJobs > 0;\n      submit.setAttribute(\"aria-busy\", activeJobs > 0 ? \"true\" : \"false\");\n    }\n  };\n\n  const loadImage = async (file) => {\n    if (\"createImageBitmap\" in window) {\n      return createImageBitmap(file, { imageOrientation: \"from-image\" });\n    }\n    const url = URL.createObjectURL(file);\n    try {\n      const image = new Image();\n      image.src = url;\n      await image.decode();\n      return image;\n    } finally {\n      URL.revokeObjectURL(url);\n    }\n  };\n\n  const canvasBlob = (canvas, quality) => new Promise((resolve, reject) => {\n    canvas.toBlob(\n      (blob) => blob ? resolve(blob) : reject(new Error(\"JPEG conversion failed\")),\n      \"image\/jpeg\",\n      quality\n    );\n  });\n\n  const compressImage = async (file) => {\n    const image = await loadImage(file);\n    const sourceWidth = image.width;\n    const sourceHeight = image.height;\n    let scale = Math.min(1, MAX_EDGE \/ Math.max(sourceWidth, sourceHeight));\n    let width = Math.max(1, Math.round(sourceWidth * scale));\n    let height = Math.max(1, Math.round(sourceHeight * scale));\n    let result = null;\n\n    for (let pass = 0; pass < 4 && (!result || result.size > OUTPUT_LIMIT); pass += 1) {\n      const canvas = document.createElement(\"canvas\");\n      canvas.width = width;\n      canvas.height = height;\n      const context = canvas.getContext(\"2d\", { alpha: false });\n      context.fillStyle = \"#fff\";\n      context.fillRect(0, 0, width, height);\n      context.drawImage(image, 0, 0, width, height);\n\n      for (const quality of QUALITIES) {\n        result = await canvasBlob(canvas, quality);\n        if (result.size <= OUTPUT_LIMIT) break;\n      }\n\n      width = Math.max(1, Math.round(width * 0.82));\n      height = Math.max(1, Math.round(height * 0.82));\n    }\n\n    if (typeof image.close === \"function\") image.close();\n    if (!result || result.size > OUTPUT_LIMIT) throw new Error(\"Compressed image is still too large\");\n\n    const name = file.name.replace(\/\\.[^.]+$\/, \"\") + \"-zmensena.jpg\";\n    return new File([result], name, { type: \"image\/jpeg\", lastModified: Date.now() });\n  };\n\n  document.addEventListener(\"change\", async (event) => {\n    const input = event.target;\n    if (!(input instanceof HTMLInputElement)) return;\n    if (input.type !== \"file\" || !input.name.startsWith(FIELD_PREFIX)) return;\n    if (!document.body.classList.contains(\"page-id-120\")) return;\n\n    if (input.dataset.kretzCompressed === VERSION) {\n      delete input.dataset.kretzCompressed;\n      return;\n    }\n\n    const file = input.files && input.files[0];\n    if (!file) {\n      setStatus(input, \"\");\n      return;\n    }\n    if (file.size <= OUTPUT_LIMIT) {\n      setStatus(input, `Soubor ${formatSize(file.size)} nen\u00ed nutn\u00e9 zmen\u0161ovat.`);\n      return;\n    }\n\n    event.preventDefault();\n    event.stopImmediatePropagation();\n\n    if (file.size > SOURCE_LIMIT) {\n      input.value = \"\";\n      setStatus(input, \"Fotografie je v\u011bt\u0161\u00ed ne\u017e 12 MB. Vyberte pros\u00edm men\u0161\u00ed soubor.\", true);\n      return;\n    }\n\n    const form = input.closest(\"form\");\n    setBusy(form, true);\n    input.disabled = true;\n    setStatus(input, `Zmen\u0161uji fotografii ${formatSize(file.size)}\u2026`);\n\n    try {\n      const compressed = await compressImage(file);\n      const transfer = new DataTransfer();\n      transfer.items.add(compressed);\n      input.files = transfer.files;\n      input.dataset.kretzCompressed = VERSION;\n      setStatus(input, `Fotografie byla zmen\u0161ena z ${formatSize(file.size)} na ${formatSize(compressed.size)}.`);\n      input.dispatchEvent(new Event(\"change\", { bubbles: true }));\n    } catch (error) {\n      input.value = \"\";\n      setStatus(input, \"Fotografii se nepoda\u0159ilo zmen\u0161it. Zkuste pros\u00edm men\u0161\u00ed soubor nebo form\u00e1t JPG.\", true);\n    } finally {\n      input.disabled = false;\n      setBusy(form, false);\n    }\n  }, true);\n\n  document.addEventListener(\"submit\", (event) => {\n    if (activeJobs > 0 && event.target.matches(\".wpcf7-form\")) {\n      event.preventDefault();\n      event.stopImmediatePropagation();\n    }\n  }, true);\n\n  document.addEventListener(\"reset\", (event) => {\n    if (!event.target.matches(\".wpcf7-form\")) return;\n    event.target.querySelectorAll(\".kretz-compression-status\").forEach((status) => {\n      status.textContent = \"\";\n      status.classList.remove(\"is-error\");\n    });\n  }, true);\n})();\n<\/script>\n\t\t<\/div>\n\t<\/div>\n<\/div><\/div><\/div><\/div><div data-vc-full-width=\"true\" data-vc-full-width-temp=\"true\" data-vc-full-width-init=\"false\" class=\"vc_row wpb_row vc_row-fluid vc_custom_1757600179772 vc_row-has-fill\"><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\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f2970-o1\" lang=\"cs-CZ\" dir=\"ltr\" data-wpcf7-id=\"2970\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/pages\/120#wpcf7-f2970-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" enctype=\"multipart\/form-data\" novalidate=\"novalidate\" data-status=\"init\" data-trp-original-action=\"\/en\/wp-json\/wp\/v2\/pages\/120#wpcf7-f2970-o1\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"2970\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.1\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"cs_CZ\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f2970-o1\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/><input type=\"hidden\" name=\"_uacf7_hidden_conditional_fields\" value=\"\" \/><input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" \/>\n<\/fieldset>\n<div class=\"uacf7-form-wrapper-container uacf7-form-2970\"><font color=\"black\"><div id=\"responsive-form\" class=\"clearfix\">\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"Kontaktn\u00ed formul\u00e1\u0159 - Servis\" type=\"hidden\" name=\"form-title\" \/>\n\n<div class=\"uacf7-row\"><div class=\"uacf7-col-4\"> <div class=\"column-full\">Name and surname <span class=\"wpcf7-form-control-wrap\" data-name=\"first-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"first-name\" \/><\/span><\/div> <\/div><div class=\"uacf7-col-4\"> <div class=\"column-full\">E-mail * <span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span><\/div> <\/div><div class=\"uacf7-col-4\"> <div class=\"column-full\">Phone number <span class=\"wpcf7-form-control-wrap\" data-name=\"telefon\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-tel wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-tel\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"tel\" name=\"telefon\" \/><\/span><\/div> <\/div><\/div>\n\n<div class=\"uacf7-row\"><div class=\"uacf7-col-4\"> <div class=\"column-full\">Street <span class=\"wpcf7-form-control-wrap\" data-name=\"adresa-ulice\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"adresa-ulice\" \/><\/span><\/div> <\/div><div class=\"uacf7-col-4\"> <div class=\"column-full\">City <span class=\"wpcf7-form-control-wrap\" data-name=\"adresa-mesto\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"adresa-mesto\" \/><\/span><\/div> <\/div><div class=\"uacf7-col-4\"> <div class=\"column-full\">postal code <span class=\"wpcf7-form-control-wrap\" data-name=\"adresa-psc\"><input class=\"wpcf7-form-control wpcf7-number wpcf7-validates-as-number\" aria-invalid=\"false\" value=\"\" type=\"number\" name=\"adresa-psc\" \/><\/span><\/div> <\/div><\/div>\n\n<div class=\"uacf7-row\"><div class=\"uacf7-col-4\"> <div class=\"column-full\">Type of fireplace insert <span class=\"wpcf7-form-control-wrap\" data-name=\"typ-krbove-vlozky\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"typ-krbove-vlozky\" \/><\/span><\/div> <\/div><div class=\"uacf7-col-4\"> <div class=\"column-full\">Year of manufacture <span class=\"wpcf7-form-control-wrap\" data-name=\"rok-vyroby\"><input class=\"wpcf7-form-control wpcf7-number wpcf7-validates-as-number\" aria-invalid=\"false\" value=\"\" type=\"number\" name=\"rok-vyroby\" \/><\/span><\/div> <\/div><div class=\"uacf7-col-4\"> <div class=\"column-full\">V\u00fdrobce \/ zna\u010dka krbov\u00e9 vlo\u017eky <span class=\"wpcf7-form-control-wrap\" data-name=\"vyrobce-znacka\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"vyrobce-znacka\" \/><\/span><\/div> <\/div><\/div>\n\n<div class=\"form-row\">\n<div class=\"column-full\">P\u0159ilo\u017eit fotografii 1 <span class=\"wpcf7-form-control-wrap\" data-name=\"servisni-fotografie-1\"><input size=\"40\" class=\"wpcf7-form-control wpcf7-file\" accept=\".jpg,.jpeg,.png,.webp\" aria-invalid=\"false\" type=\"file\" name=\"servisni-fotografie-1\" \/><\/span><\/div>\n<\/div>\n<div class=\"form-row\">\n<div class=\"column-full\">P\u0159ilo\u017eit fotografii 2 <span class=\"wpcf7-form-control-wrap\" data-name=\"servisni-fotografie-2\"><input size=\"40\" class=\"wpcf7-form-control wpcf7-file\" accept=\".jpg,.jpeg,.png,.webp\" aria-invalid=\"false\" type=\"file\" name=\"servisni-fotografie-2\" \/><\/span><\/div>\n<\/div>\n<div class=\"form-row\">\n<div class=\"column-full\">P\u0159ilo\u017eit fotografii 3 <span class=\"wpcf7-form-control-wrap\" data-name=\"servisni-fotografie-3\"><input size=\"40\" class=\"wpcf7-form-control wpcf7-file\" accept=\".jpg,.jpeg,.png,.webp\" aria-invalid=\"false\" type=\"file\" name=\"servisni-fotografie-3\" \/><\/span>\n<small class=\"service-upload-help\">JPG, PNG nebo WebP, maxim\u00e1ln\u011b 12 MB na fotografii<\/small><\/div>\n<\/div>\n\n<div class=\"form-row\">\n<div class=\"column-full\">Your message  <span class=\"wpcf7-form-control-wrap\" data-name=\"your-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"500\" minlength=\"4\" class=\"wpcf7-form-control wpcf7-textarea\" aria-invalid=\"false\" name=\"your-message\"><\/textarea><\/span>\n<br><br>\n* Required field<\/br><\/br>\nBy submitting the form, you agree to the <a href=\"\/en\/zasady-ochrany-osobnich-udaju\/\">processing of your personal data<\/a>. This page  is protected by reCAPTCHA, and the Google <a href=\"https:\/\/policies.google.com\/privacy\">Privacy Policy<\/a> and <a href=\"https:\/\/policies.google.com\/terms\">Terms of Service<\/a> apply<\/div>\n<\/div>\n<div class=\"form-row\">\n<\/div>\n<div class=\"form-row\">\n<span id=\"wpcf7-6aa43e1845fa4-wrapper\" class=\"wpcf7-form-control-wrap honeypot-734-wrap\" style=\"display:none !important; visibility:hidden !important;\"><label for=\"wpcf7-6aa43e1845fa4-field\" class=\"hp-message\">Ponechte toto pole pr\u00e1zdn\u00e9.<\/label><input id=\"wpcf7-6aa43e1845fa4-field\"  class=\"wpcf7-form-control wpcf7-text\" type=\"text\" name=\"honeypot-734\" value=\"\" size=\"40\" tabindex=\"-1\" autocomplete=\"new-password\" \/><\/span>\n<div class=\"column-full\"><input class=\"wpcf7-form-control wpcf7-submit has-spinner\" type=\"submit\" value=\"SEND\" \/><\/div>\n<\/div>\n\n<\/div><!--end responsive-form-->\n<\/font><\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<input type=\"hidden\" name=\"trp-form-language\" value=\"en\"\/><\/form>\n<\/div>\n\n\t\t<\/div>\n\t<\/div>\n<\/div><\/div><\/div><\/div><div class=\"vc_row-full-width vc_clearfix\"><\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Servis, opravy a n\u00e1hradn\u00ed d\u00edly pro krbov\u00e9 vlo\u017eky Zaji\u0161\u0165ujeme n\u00e1hradn\u00ed d\u00edly, opravy a repase krbov\u00fdch vlo\u017eek KRETZ i dal\u0161\u00edch v\u00fdrobc\u016f. Za\u0161lete n\u00e1m informace o vlo\u017ece a popis probl\u00e9mu \u2013 prov\u011b\u0159\u00edme mo\u017enosti \u0159e\u0161en\u00ed. n\u00e1hradn\u00ed d\u00edly ke krbov\u00fdm vlo\u017ek\u00e1m; opravy a servis; repase star\u0161\u00edch krbov\u00fdch vlo\u017eek; servis vlo\u017eek KRETZ i jin\u00fdch v\u00fdrobc\u016f; p\u0159edb\u011b\u017en\u00e9 posouzen\u00ed probl\u00e9mu podle dodan\u00fdch&hellip;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-120","page","type-page","status-publish","hentry","description-off"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Servis - n\u00e1hradn\u00ed d\u00edly - KRETZ.cz - krby a krbov\u00e1 kamna<\/title>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Servis - n\u00e1hradn\u00ed d\u00edly - KRETZ.cz - krby a krbov\u00e1 kamna\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kretz.cz\/en\/servis-nahradni-dily\/\" \/>\n<meta property=\"og:site_name\" content=\"KRETZ.cz - krby a krbov\u00e1 kamna\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/krbykretz\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-12T12:52:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kretz.cz\/wp-content\/uploads\/2025\/09\/Kovovyroba_03-ostrava-oc-nova-karolina-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"598\" \/>\n\t<meta property=\"og:image:height\" content=\"442\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kretz.cz\/servis-nahradni-dily\/\",\"url\":\"https:\/\/kretz.cz\/servis-nahradni-dily\/\",\"name\":\"Servis - n\u00e1hradn\u00ed d\u00edly - KRETZ.cz - krby a krbov\u00e1 kamna\",\"isPartOf\":{\"@id\":\"https:\/\/kretz.cz\/#website\"},\"datePublished\":\"2025-01-27T18:54:40+00:00\",\"dateModified\":\"2026-08-12T12:52:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kretz.cz\/servis-nahradni-dily\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kretz.cz\/servis-nahradni-dily\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kretz.cz\/servis-nahradni-dily\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Dom\u016f\",\"item\":\"https:\/\/kretz.cz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Servis &#8211; n\u00e1hradn\u00ed d\u00edly\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kretz.cz\/#website\",\"url\":\"https:\/\/kretz.cz\/\",\"name\":\"KRETZ.cz - krby a krbov\u00e1 kamna\",\"description\":\"Jsme \u010desk\u00e1 spole\u010dnost p\u016fsob\u00edc\u00ed v oblasti v\u00fdroby a stroj\u00edrenstv\u00ed. Specializujeme se na v\u00fdrobu krbov\u00fdch vlo\u017eek a topen\u00e1\u0159sk\u00e9 techniky, z\u00e1rove\u0148 nab\u00edz\u00edme zak\u00e1zkovou stroj\u00edrenskou v\u00fdrobu. Realizujeme tak\u00e9 stavebn\u00ed projekty v\u010detn\u011b kovov\u00fdch konstrukc\u00ed. Na\u0161\u00ed p\u0159ednost\u00ed je kvalita, spolehlivost a individu\u00e1ln\u00ed p\u0159\u00edstup ke ka\u017ed\u00e9mu z\u00e1kazn\u00edkovi.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kretz.cz\/?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":"Servis - n\u00e1hradn\u00ed d\u00edly - KRETZ.cz - krby a krbov\u00e1 kamna","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"Servis - n\u00e1hradn\u00ed d\u00edly - KRETZ.cz - krby a krbov\u00e1 kamna","og_url":"https:\/\/kretz.cz\/en\/servis-nahradni-dily\/","og_site_name":"KRETZ.cz - krby a krbov\u00e1 kamna","article_publisher":"https:\/\/www.facebook.com\/krbykretz\/","article_modified_time":"2026-08-12T12:52:30+00:00","og_image":[{"width":598,"height":442,"url":"https:\/\/kretz.cz\/wp-content\/uploads\/2025\/09\/Kovovyroba_03-ostrava-oc-nova-karolina-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/kretz.cz\/servis-nahradni-dily\/","url":"https:\/\/kretz.cz\/servis-nahradni-dily\/","name":"Servis - n\u00e1hradn\u00ed d\u00edly - KRETZ.cz - krby a krbov\u00e1 kamna","isPartOf":{"@id":"https:\/\/kretz.cz\/#website"},"datePublished":"2025-01-27T18:54:40+00:00","dateModified":"2026-08-12T12:52:30+00:00","breadcrumb":{"@id":"https:\/\/kretz.cz\/servis-nahradni-dily\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kretz.cz\/servis-nahradni-dily\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kretz.cz\/servis-nahradni-dily\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Dom\u016f","item":"https:\/\/kretz.cz\/"},{"@type":"ListItem","position":2,"name":"Servis &#8211; n\u00e1hradn\u00ed d\u00edly"}]},{"@type":"WebSite","@id":"https:\/\/kretz.cz\/#website","url":"https:\/\/kretz.cz\/","name":"KRETZ.cz - krby a krbov\u00e1 kamna","description":"Jsme \u010desk\u00e1 spole\u010dnost p\u016fsob\u00edc\u00ed v oblasti v\u00fdroby a stroj\u00edrenstv\u00ed. Specializujeme se na v\u00fdrobu krbov\u00fdch vlo\u017eek a topen\u00e1\u0159sk\u00e9 techniky, z\u00e1rove\u0148 nab\u00edz\u00edme zak\u00e1zkovou stroj\u00edrenskou v\u00fdrobu. Realizujeme tak\u00e9 stavebn\u00ed projekty v\u010detn\u011b kovov\u00fdch konstrukc\u00ed. Na\u0161\u00ed p\u0159ednost\u00ed je kvalita, spolehlivost a individu\u00e1ln\u00ed p\u0159\u00edstup ke ka\u017ed\u00e9mu z\u00e1kazn\u00edkovi.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kretz.cz\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/kretz.cz\/en\/wp-json\/wp\/v2\/pages\/120","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kretz.cz\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/kretz.cz\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/kretz.cz\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kretz.cz\/en\/wp-json\/wp\/v2\/comments?post=120"}],"version-history":[{"count":10,"href":"https:\/\/kretz.cz\/en\/wp-json\/wp\/v2\/pages\/120\/revisions"}],"predecessor-version":[{"id":3372,"href":"https:\/\/kretz.cz\/en\/wp-json\/wp\/v2\/pages\/120\/revisions\/3372"}],"wp:attachment":[{"href":"https:\/\/kretz.cz\/en\/wp-json\/wp\/v2\/media?parent=120"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}