{"id":1478,"date":"2025-06-13T14:24:25","date_gmt":"2025-06-13T14:24:25","guid":{"rendered":"https:\/\/enasoiubogdan.com\/?page_id=1478"},"modified":"2025-06-13T14:23:03","modified_gmt":"2025-06-13T14:23:03","slug":"google-reviews-test","status":"publish","type":"page","link":"https:\/\/enasoiubogdan.com\/","title":{"rendered":"Google Reviews Test"},"content":{"rendered":"\n<!-- Google Reviews Carousel Widget -->\n<div id=\"google-reviews-widget\" data-title=\"Ce spun clien\u021bii Boomag\">\n  <h2 id=\"reviews-title\"><\/h2>\n  <div class=\"carousel\">\n    <button class=\"arrow left\">&#10094;<\/button>\n    <div class=\"carousel-track\"><\/div>\n    <button class=\"arrow right\">&#10095;<\/button>\n  <\/div>\n<\/div>\n\n<link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.5.0\/css\/all.min.css\">\n<style>\n  #google-reviews-widget {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 20px;\n    font-family: Arial, sans-serif;\n  }\n  #reviews-title {\n    text-align: center;\n    font-size: 1.8rem;\n    margin-bottom: 20px;\n  }\n  .carousel {\n    position: relative;\n    overflow: hidden;\n  }\n  .carousel-track {\n    display: flex;\n    transition: transform 0.5s ease;\n  }\n  .review-card {\n    flex: 0 0 33.3333%;\n    box-sizing: border-box;\n    padding: 20px;\n    background: var(--card-bg);\n    color: var(--card-text);\n    border-radius: 12px;\n    box-shadow: 0 4px 10px rgba(0,0,0,0.1);\n    margin: 0 10px;\n    position: relative;\n  }\n  .review-header {\n    display: flex;\n    align-items: center;\n    margin-bottom: 10px;\n  }\n  .review-header img {\n    width: 32px;\n    height: 32px;\n    border-radius: 50%;\n    margin-right: 8px;\n  }\n  .stars {\n    color: #fbc02d;\n    margin-bottom: 10px;\n    font-size: 1.1rem;\n  }\n  .arrow {\n    position: absolute;\n    top: 50%;\n    transform: translateY(-50%);\n    background: rgba(0,0,0,0.2);\n    border: none;\n    font-size: 1.2rem;\n    padding: 6px 10px;\n    cursor: pointer;\n    z-index: 10;\n    border-radius: 50%;\n    transition: background 0.3s;\n    color: white;\n  }\n  .arrow.left { left: 5px; }\n  .arrow.right { right: 5px; }\n  .arrow:hover {\n    background: rgba(0,0,0,0.4);\n  }\n  .read-more {\n    color: #007BFF;\n    cursor: pointer;\n    display: inline-block;\n    margin-top: 10px;\n  }\n\n  @media (max-width: 768px) {\n    .review-card {\n      flex: 0 0 100%;\n      margin: 0;\n    }\n    .arrow {\n      font-size: 1rem;\n      padding: 4px 8px;\n    }\n  }\n\n  @media (prefers-color-scheme: dark) {\n    :root {\n      --card-bg: #1e1e1e;\n      --card-text: #fff;\n    }\n  }\n  @media (prefers-color-scheme: light) {\n    :root {\n      --card-bg: #fff;\n      --card-text: #000;\n    }\n  }\n<\/style>\n\n<script>\nconst reviewsUrl = \"https:\/\/enasoiubogdan.com\/reviews\/recenzii-boomag.json\";\nconst title = document.getElementById(\"google-reviews-widget\").getAttribute(\"data-title\") || \"Ce spun clien\u021bii no\u0219tri\";\ndocument.getElementById(\"reviews-title\").textContent = title;\n\nfetch(reviewsUrl)\n  .then(res => res.json())\n  .then(reviews => {\n    const container = document.querySelector(\".carousel-track\");\n    reviews.slice(0, 30).forEach(r => {\n      const card = document.createElement(\"div\");\n      card.className = \"review-card\";\n\n      const fullText = r.text;\n      const truncatedText = fullText.length > 200 ? fullText.slice(0, 200) + \"...\" : fullText;\n\n      card.innerHTML = `\n        <div class=\"review-header\">\n          <img decoding=\"async\" src=\"${r.author_image || 'https:\/\/www.gravatar.com\/avatar\/?d=mp'}\" alt=\"${r.author}\">\n          <strong>${r.author}<\/strong>\n        <\/div>\n        <div class=\"stars\">${\"\u2605\".repeat(r.stars)}<\/div>\n        <p class=\"review-text\">${truncatedText}<\/p>\n        ${fullText.length > 200 ? '<span class=\"read-more\">Cite\u0219te mai mult<\/span>' : ''}\n        <small>${r.date}<\/small>\n      `;\n\n      container.appendChild(card);\n    });\n\n    let autoSlideInterval;\n    const startAutoSlide = () => {\n      autoSlideInterval = setInterval(() => {\n        const visibleCards = window.innerWidth < 768 ? 1 : 3;\n        const maxIndex = cards.length - visibleCards;\n        currentIndex = (currentIndex + visibleCards > maxIndex) ? 0 : currentIndex + visibleCards;\n        updateCarousel();\n      }, 5000);\n    };\n\n    const stopAutoSlide = () => clearInterval(autoSlideInterval);\n\n    document.querySelectorAll(\".read-more, .review-card\").forEach(el => {\n      el.addEventListener(\"mouseenter\", stopAutoSlide);\n      el.addEventListener(\"mouseleave\", startAutoSlide);\n      el.addEventListener(\"click\", stopAutoSlide);\n    });\n\n    document.querySelectorAll(\".read-more\").forEach(btn => {\n      btn.addEventListener(\"click\", e => {\n        const p = e.target.previousElementSibling;\n        const full = reviews.find(r => r.text.startsWith(p.textContent.slice(0, 20)));\n        p.textContent = full.text;\n        e.target.remove();\n      });\n    });\n\n    const cards = document.querySelectorAll(\".review-card\");\n    let currentIndex = 0;\n\n    const updateCarousel = () => {\n      const cardWidth = cards[0].offsetWidth + 20;\n      const visibleCards = window.innerWidth < 768 ? 1 : 3;\n      const offset = cardWidth * currentIndex;\n      container.style.transform = `translateX(-${offset}px)`;\n    };\n\n    document.querySelector(\".arrow.left\").onclick = () => {\n      const visibleCards = window.innerWidth < 768 ? 1 : 3;\n      currentIndex = Math.max(currentIndex - visibleCards, 0);\n      updateCarousel();\n    };\n\n    document.querySelector(\".arrow.right\").onclick = () => {\n      const visibleCards = window.innerWidth < 768 ? 1 : 3;\n      const maxIndex = cards.length - visibleCards;\n      currentIndex = Math.min(currentIndex + visibleCards, maxIndex);\n      updateCarousel();\n    };\n\n    window.addEventListener(\"resize\", updateCarousel);\n    updateCarousel();\n    startAutoSlide();\n  });\n<\/script>\n\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"ro\">\n<head>\n  <meta charset=\"UTF-8\" \/>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" \/>\n  <title>Recenzii BooMag<\/title>\n  <style>\n    :root {\n      --bg-light: #ffffff;\n      --bg-dark: #1e1e1e;\n      --text-light: #1a1a1a;\n      --text-dark: #f0f0f0;\n      --card-bg-light: #f9f9f9;\n      --card-bg-dark: #2a2a2a;\n    }\n\n    body {\n      margin: 0;\n      font-family: \"Segoe UI\", sans-serif;\n      background-color: var(--bg-light);\n      color: var(--text-light);\n      transition: all 0.3s ease-in-out;\n    }\n\n    @media (prefers-color-scheme: dark) {\n      body {\n        background-color: var(--bg-dark);\n        color: var(--text-dark);\n      }\n      .review-card {\n        background-color: var(--card-bg-dark);\n      }\n    }\n\n    .reviews-container {\n      display: flex;\n      flex-wrap: wrap;\n      justify-content: center;\n      padding: 2rem;\n      gap: 1.5rem;\n      max-width: 1200px;\n      margin: auto;\n    }\n\n    .review-card {\n      background-color: var(--card-bg-light);\n      border-radius: 1rem;\n      padding: 1.5rem;\n      max-width: 300px;\n      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);\n      transition: transform 0.3s;\n    }\n\n    .review-card:hover {\n      transform: scale(1.03);\n    }\n\n    .review-stars {\n      color: #fbbc04;\n      font-size: 1.2rem;\n    }\n\n    .review-author {\n      font-weight: bold;\n      margin-top: 0.5rem;\n    }\n\n    .review-logo {\n      width: 90px;\n      margin-bottom: 0.5rem;\n    }\n  <\/style>\n<\/head>\n<body>\n  <div class=\"reviews-container\" id=\"reviews\"><\/div>\n\n  <script>\n    async function loadReviews() {\n      try {\n        const res = await fetch(\"\/reviews\/recenzii-boomag.json\");\n        const data = await res.json();\n        const container = document.getElementById(\"reviews\");\n\n        const logo = '<img decoding=\"async\" src=\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/1\/1b\/Google_Reviews_logo.svg\/512px-Google_Reviews_logo.svg.png\" alt=\"Google Reviews\" class=\"review-logo\">';\n\n        data.slice(0, 12).forEach((review) => {\n          const card = document.createElement(\"div\");\n          card.className = \"review-card\";\n          card.innerHTML = `\n            ${logo}\n            <div class=\"review-stars\">\u2605\u2605\u2605\u2605\u2605<\/div>\n            <div class=\"review-text\">${review.text}<\/div>\n            <div class=\"review-author\">\u2014 ${review.author}<\/div>\n          `;\n          container.appendChild(card);\n        });\n      } catch (error) {\n        console.error(\"Eroare la \u00eenc\u0103rcarea recenziilor:\", error);\n      }\n    }\n\n    loadReviews();\n  <\/script>\n<\/body>\n<\/html>\n\n","protected":false},"excerpt":{"rendered":"<p>&#10094; &#10095; Recenzii BooMag<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-1478","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u276e \u276f const reviewsUrl = &quot;https:\/\/enasoiubogdan.com\/reviews\/recenzii-boomag.json&quot;; const title = document.getElementById(&quot;google-reviews-widget&quot;).getAttribute(&quot;data-title&quot;) || &quot;Ce spun clien\u021bii no\u0219tri&quot;; document.getElementById(&quot;reviews-title&quot;).textContent = title; fetch(reviewsUrl) .then(res =&gt; res.json()) .then(reviews =&gt; { const container = document.querySelector(&quot;.carousel-track&quot;); reviews.slice(0, 30).forEach(r =&gt; { const card = document.createElement(&quot;div&quot;); card.className = &quot;review-card&quot;; const fullText = r.text; const truncatedText = fullText.length &gt; 200 ? fullText.slice(0, 200) + &quot;...&quot;\" \/>\n\t<meta name=\"robots\" content=\"noindex, nofollow, max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/enasoiubogdan.com\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"enasoiubogdan.com - Just another WordPress site\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Google Reviews Test - enasoiubogdan.com\" \/>\n\t\t<meta property=\"og:description\" content=\"\u276e \u276f const reviewsUrl = &quot;https:\/\/enasoiubogdan.com\/reviews\/recenzii-boomag.json&quot;; const title = document.getElementById(&quot;google-reviews-widget&quot;).getAttribute(&quot;data-title&quot;) || &quot;Ce spun clien\u021bii no\u0219tri&quot;; document.getElementById(&quot;reviews-title&quot;).textContent = title; fetch(reviewsUrl) .then(res =&gt; res.json()) .then(reviews =&gt; { const container = document.querySelector(&quot;.carousel-track&quot;); reviews.slice(0, 30).forEach(r =&gt; { const card = document.createElement(&quot;div&quot;); card.className = &quot;review-card&quot;; const fullText = r.text; const truncatedText = fullText.length &gt; 200 ? fullText.slice(0, 200) + &quot;...&quot;\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/enasoiubogdan.com\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/enasoiubogdan.com\/wp-content\/uploads\/2021\/02\/digital-marketing-coach-template-logo.svg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/enasoiubogdan.com\/wp-content\/uploads\/2021\/02\/digital-marketing-coach-template-logo.svg\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-06-13T14:24:25+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-06-13T14:23:03+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Google Reviews Test - enasoiubogdan.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u276e \u276f const reviewsUrl = &quot;https:\/\/enasoiubogdan.com\/reviews\/recenzii-boomag.json&quot;; const title = document.getElementById(&quot;google-reviews-widget&quot;).getAttribute(&quot;data-title&quot;) || &quot;Ce spun clien\u021bii no\u0219tri&quot;; document.getElementById(&quot;reviews-title&quot;).textContent = title; fetch(reviewsUrl) .then(res =&gt; res.json()) .then(reviews =&gt; { const container = document.querySelector(&quot;.carousel-track&quot;); reviews.slice(0, 30).forEach(r =&gt; { const card = document.createElement(&quot;div&quot;); card.className = &quot;review-card&quot;; const fullText = r.text; const truncatedText = fullText.length &gt; 200 ? fullText.slice(0, 200) + &quot;...&quot;\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/enasoiubogdan.com\/wp-content\/uploads\/2021\/02\/digital-marketing-coach-template-logo.svg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/enasoiubogdan.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#listItem\",\"name\":\"Google Reviews Test\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#listItem\",\"position\":2,\"name\":\"Google Reviews Test\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#organization\",\"name\":\"enasoiubogdan.com\",\"description\":\"Just another WordPress site\",\"url\":\"https:\\\/\\\/enasoiubogdan.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/enasoiubogdan.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/digital-marketing-coach-template-logo.svg\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#organizationLogo\"},\"image\":{\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#organizationLogo\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#webpage\",\"url\":\"https:\\\/\\\/enasoiubogdan.com\\\/\",\"name\":\"Google Reviews Test - enasoiubogdan.com\",\"description\":\"\\u276e \\u276f const reviewsUrl = \\\"https:\\\/\\\/enasoiubogdan.com\\\/reviews\\\/recenzii-boomag.json\\\"; const title = document.getElementById(\\\"google-reviews-widget\\\").getAttribute(\\\"data-title\\\") || \\\"Ce spun clien\\u021bii no\\u0219tri\\\"; document.getElementById(\\\"reviews-title\\\").textContent = title; fetch(reviewsUrl) .then(res => res.json()) .then(reviews => { const container = document.querySelector(\\\".carousel-track\\\"); reviews.slice(0, 30).forEach(r => { const card = document.createElement(\\\"div\\\"); card.className = \\\"review-card\\\"; const fullText = r.text; const truncatedText = fullText.length > 200 ? fullText.slice(0, 200) + \\\"...\\\"\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#breadcrumblist\"},\"datePublished\":\"2025-06-13T14:24:25+00:00\",\"dateModified\":\"2025-06-13T14:23:03+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#website\",\"url\":\"https:\\\/\\\/enasoiubogdan.com\\\/\",\"name\":\"enasoiubogdan.com\",\"description\":\"Just another WordPress site\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/enasoiubogdan.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Google Reviews Test - enasoiubogdan.com","description":"\u276e \u276f const reviewsUrl = \"https:\/\/enasoiubogdan.com\/reviews\/recenzii-boomag.json\"; const title = document.getElementById(\"google-reviews-widget\").getAttribute(\"data-title\") || \"Ce spun clien\u021bii no\u0219tri\"; document.getElementById(\"reviews-title\").textContent = title; fetch(reviewsUrl) .then(res => res.json()) .then(reviews => { const container = document.querySelector(\".carousel-track\"); reviews.slice(0, 30).forEach(r => { const card = document.createElement(\"div\"); card.className = \"review-card\"; const fullText = r.text; const truncatedText = fullText.length > 200 ? fullText.slice(0, 200) + \"...\"","canonical_url":"https:\/\/enasoiubogdan.com\/","robots":"noindex, nofollow, max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/enasoiubogdan.com\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/enasoiubogdan.com#listItem","position":1,"name":"Home","item":"https:\/\/enasoiubogdan.com","nextItem":{"@type":"ListItem","@id":"https:\/\/enasoiubogdan.com\/#listItem","name":"Google Reviews Test"}},{"@type":"ListItem","@id":"https:\/\/enasoiubogdan.com\/#listItem","position":2,"name":"Google Reviews Test","previousItem":{"@type":"ListItem","@id":"https:\/\/enasoiubogdan.com#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/enasoiubogdan.com\/#organization","name":"enasoiubogdan.com","description":"Just another WordPress site","url":"https:\/\/enasoiubogdan.com\/","logo":{"@type":"ImageObject","url":"https:\/\/enasoiubogdan.com\/wp-content\/uploads\/2021\/02\/digital-marketing-coach-template-logo.svg","@id":"https:\/\/enasoiubogdan.com\/#organizationLogo"},"image":{"@id":"https:\/\/enasoiubogdan.com\/#organizationLogo"}},{"@type":"WebPage","@id":"https:\/\/enasoiubogdan.com\/#webpage","url":"https:\/\/enasoiubogdan.com\/","name":"Google Reviews Test - enasoiubogdan.com","description":"\u276e \u276f const reviewsUrl = \"https:\/\/enasoiubogdan.com\/reviews\/recenzii-boomag.json\"; const title = document.getElementById(\"google-reviews-widget\").getAttribute(\"data-title\") || \"Ce spun clien\u021bii no\u0219tri\"; document.getElementById(\"reviews-title\").textContent = title; fetch(reviewsUrl) .then(res => res.json()) .then(reviews => { const container = document.querySelector(\".carousel-track\"); reviews.slice(0, 30).forEach(r => { const card = document.createElement(\"div\"); card.className = \"review-card\"; const fullText = r.text; const truncatedText = fullText.length > 200 ? fullText.slice(0, 200) + \"...\"","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/enasoiubogdan.com\/#website"},"breadcrumb":{"@id":"https:\/\/enasoiubogdan.com\/#breadcrumblist"},"datePublished":"2025-06-13T14:24:25+00:00","dateModified":"2025-06-13T14:23:03+00:00"},{"@type":"WebSite","@id":"https:\/\/enasoiubogdan.com\/#website","url":"https:\/\/enasoiubogdan.com\/","name":"enasoiubogdan.com","description":"Just another WordPress site","inLanguage":"en-US","publisher":{"@id":"https:\/\/enasoiubogdan.com\/#organization"}}]},"og:locale":"en_US","og:site_name":"enasoiubogdan.com - Just another WordPress site","og:type":"article","og:title":"Google Reviews Test - enasoiubogdan.com","og:description":"\u276e \u276f const reviewsUrl = &quot;https:\/\/enasoiubogdan.com\/reviews\/recenzii-boomag.json&quot;; const title = document.getElementById(&quot;google-reviews-widget&quot;).getAttribute(&quot;data-title&quot;) || &quot;Ce spun clien\u021bii no\u0219tri&quot;; document.getElementById(&quot;reviews-title&quot;).textContent = title; fetch(reviewsUrl) .then(res =&gt; res.json()) .then(reviews =&gt; { const container = document.querySelector(&quot;.carousel-track&quot;); reviews.slice(0, 30).forEach(r =&gt; { const card = document.createElement(&quot;div&quot;); card.className = &quot;review-card&quot;; const fullText = r.text; const truncatedText = fullText.length &gt; 200 ? fullText.slice(0, 200) + &quot;...&quot;","og:url":"https:\/\/enasoiubogdan.com\/","og:image":"https:\/\/enasoiubogdan.com\/wp-content\/uploads\/2021\/02\/digital-marketing-coach-template-logo.svg","og:image:secure_url":"https:\/\/enasoiubogdan.com\/wp-content\/uploads\/2021\/02\/digital-marketing-coach-template-logo.svg","article:published_time":"2025-06-13T14:24:25+00:00","article:modified_time":"2025-06-13T14:23:03+00:00","twitter:card":"summary_large_image","twitter:title":"Google Reviews Test - enasoiubogdan.com","twitter:description":"\u276e \u276f const reviewsUrl = &quot;https:\/\/enasoiubogdan.com\/reviews\/recenzii-boomag.json&quot;; const title = document.getElementById(&quot;google-reviews-widget&quot;).getAttribute(&quot;data-title&quot;) || &quot;Ce spun clien\u021bii no\u0219tri&quot;; document.getElementById(&quot;reviews-title&quot;).textContent = title; fetch(reviewsUrl) .then(res =&gt; res.json()) .then(reviews =&gt; { const container = document.querySelector(&quot;.carousel-track&quot;); reviews.slice(0, 30).forEach(r =&gt; { const card = document.createElement(&quot;div&quot;); card.className = &quot;review-card&quot;; const fullText = r.text; const truncatedText = fullText.length &gt; 200 ? fullText.slice(0, 200) + &quot;...&quot;","twitter:image":"https:\/\/enasoiubogdan.com\/wp-content\/uploads\/2021\/02\/digital-marketing-coach-template-logo.svg"},"aioseo_meta_data":{"post_id":"1478","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":true,"ai":null,"created":"2025-06-13 14:23:03","updated":"2025-06-13 17:57:12","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/enasoiubogdan.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tGoogle Reviews Test\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/enasoiubogdan.com"},{"label":"Google Reviews Test","link":"https:\/\/enasoiubogdan.com\/"}],"_links":{"self":[{"href":"https:\/\/enasoiubogdan.com\/index.php?rest_route=\/wp\/v2\/pages\/1478","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/enasoiubogdan.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/enasoiubogdan.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/enasoiubogdan.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/enasoiubogdan.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1478"}],"version-history":[{"count":12,"href":"https:\/\/enasoiubogdan.com\/index.php?rest_route=\/wp\/v2\/pages\/1478\/revisions"}],"predecessor-version":[{"id":1483,"href":"https:\/\/enasoiubogdan.com\/index.php?rest_route=\/wp\/v2\/pages\/1478\/revisions\/1483"}],"wp:attachment":[{"href":"https:\/\/enasoiubogdan.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1478"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}