templates/web/customer/product/details/common_attributes/common.product-attributes.dimensions.twig line 1

Open in your IDE?
  1. {##
  2.  # Product details Weight main block
  3.  #
  4.  # @ListChild (list="product.details.common.product-attributes.elements", weight="300")
  5.  #}
  6. {% if this.getProduct().getBoxLength() or this.getProduct().getBoxWidth() or this.getProduct().getBoxHeight() %}
  7.   <li class="product-dimensions">
  8.     <div><strong>{{ t('Dimensions (L x W x H)') }}</strong></div>
  9.     <span>{{ this.getProduct().getBoxLength() }} x {{ this.getProduct().getBoxWidth() }} x {{ this.getProduct().getBoxHeight() }} {{ this.getDimSymbol() }}</span>
  10.   </li>
  11. {% endif %}