custom/static-plugins/LdsWintercornTheme/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.canonicalProductId %}
  5.         {% set canonicalUrl = page.product.canonicalProductId %}
  6.     {% endif %}
  7.     
  8.     {% set FirstVariant = getFirstId(page.product.parentId,context.context) %}
  9.     {% if FirstVariant.id %}
  10.         <link rel="canonical" href="{{ seoUrl('frontend.detail.page', { productId: FirstVariant.id }) }}">
  11.     {% else %}
  12.         <link rel="canonical" href="{{ seoUrl('frontend.detail.page', { productId: canonicalUrl }) }}">
  13.     {% endif %}
  14. {% endblock %}