Trong magento 1.x, tôi có thể thêm các tệp css vào phần đầu bằng cách sử dụng trình trợ giúp như mã bên dưới.
<reference name="head">
<action method="addCss"><stylesheet helper="module/helperclass/helperfunction"/></action>
</reference>
Nhưng không thể làm điều này trên Magento 2.
Vì vậy, bây giờ, tôi đã thêm mã này <link rel="stylesheet" type="text/css" media="all" href="<?php echo $_helper->getCSSFile()?>">
vào thùng chứa "after.body.start".
Bất cứ ai biết làm thế nào tôi có thể thêm tập tin mẫu tùy chỉnh vào <head>
?