Question

I'm trying to add an already created custom attribute to the admin order review page. So far I managed to find this function but I don't know what should I change in order to display my attribute, instead of SKU.

public function getItemsHtml()
{
    return $this->getChildHtml('order_items');
}

enter image description here

What I have and what I'm trying to accomplishenter image description here

Was it helpful?

Solution

I Managed to display that attribute using this:

<?php echo $this->escapeHtml($_item->getarticleNumber()) ?>

in adminhtml/default/default/template/sales/item/column/name.phtml.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top