custom/plugins/cutvertSeo/src/Resources/views/storefront/page/product-detail/meta.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/meta.html.twig' %}
  2. {% block layout_head_meta_tags_opengraph %}
  3.     {{ parent() }}
  4.     <script type="application/ld+json">
  5.         {
  6.             "@context": "https://schema.org/",
  7.             "@type": "Product",
  8.             "name": "{{ page.product.name }}",
  9.         {% if page.product.ratingAverage %}
  10.         "aggregateRating": {
  11.         "@type": "AggregateRating",
  12.         "ratingValue": "{{ page.product.ratingAverage }}",
  13.         "ratingCount": "{{ page.reviews.totalReviews }}"
  14.         },
  15.         {% endif %}
  16.         "offers": {
  17.         "@type": "Offer",
  18.         "price": "{{ page.product.calculatedPrice.totalPrice }}",
  19.         "priceCurrency": "EUR"
  20.         }
  21.         }
  22.     </script>
  23. {% endblock %}