I\'m using Prestashop 1.6.0.9.
I wish to edit the raw HTML for this part.
If you would like column with carrier add this (behind: "$this->_join = '"):
LEFT JOIN '._DB_PREFIX_.'carrier ca ON (ca.id_carrier = a.id_carrier)
and to field list (behind "$this->fields_list = array(") add this:
'carrier' => array(
'title' => $this->l('Carrier'),
'align' => 'text-center',
'filter_key' => 'ca!name'
),