In the Magento admin interface, I need to change the tables in the order of sale / order / view, so that it shows in addition to the names of the products and their manufacturer.
I am trying to find a file to modify for this to happen. I thought I would find a section with all the columns that appear in the application / code / kernel / Mage / Sales / Block / Order / Element / Renderer / Default.php, but when checking it, there seems to be no link to the columns / product attributes.
I also tried changing the application / design / adminhtml / default / default / template / sales / order / view / elements / visualizer / default.phtml changing
<?php echo $this->getColumnHtml($_item, 'name') ?>
in
<?php echo $this->getColumnHtml($_item, 'manufacturer') ?>
but nothing has changed, so I suppose this file is not involved ...
Can someone tell me the correct file to modify?
Thanks!
source share