In magento 1.x, posso aggiungere i file CSS nella testa usando l'helper come sotto il codice.
<reference name="head">
<action method="addCss"><stylesheet helper="module/helperclass/helperfunction"/></action>
</reference>
Ma non è possibile farlo su Magento 2.
Quindi ora ho aggiunto questo codice <link rel="stylesheet" type="text/css" media="all" href="<?php echo $_helper->getCSSFile()?>">
nel contenitore "after.body.start".
Qualcuno sa come posso aggiungere il file modello personalizzato in <head>
?