custom/plugins/DmSanettaTheme/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_canonical %}
  3.     {% set canonicalUrl = page.product.id %}
  4.     {% if page.product.parentId %}
  5.         {% set canonicalUrl = page.product.parentId %}
  6.     {% endif %}
  7.     {% if page.product.canonicalProductId %}
  8.         {% set canonicalUrl = page.product.canonicalProductId %}
  9.     {% endif %}
  10.     <link rel="canonical" href="{{ seoUrl('frontend.detail.page', { productId: canonicalUrl }) }}" />
  11. {% endblock %}
  12. {% block layout_head_meta_tags_robots %}
  13.     {% if page.product.manufacturer and page.product.manufacturer.customFields.custom_hersteller_noindex == context.salesChannel.id %}
  14.         noindex,follow
  15.     {% else %}
  16.         {{ metaInformation.robots }}
  17.     {% endif %}
  18. {% endblock %}