app/template/default/Block/lm_item_size_table.twig line 1

Open in your IDE?
  1. <style>
  2.     p.size_table_caption {
  3.         background: none;
  4.         border: none;
  5.     }
  6.     p.size_table_caption:before {
  7.         content: '⌵';
  8.     }
  9. </style>
  10. {% if goods.isGoodsSetPurchase %}
  11.     {% for child in item.goods.childrenAsGoodsSetPurchase %}
  12.         {{ showSizeTable(child.goodsChild) | raw }}
  13.     {% endfor %}
  14. {% else %}
  15. {{ showSizeTable(goods) | raw }}
  16. {% endif %}