Jump to content

Solved: Add "Company" to AdminCustomer list-view


diondp

Recommended Posts

Hi There, i have succesfully added some extra fields to the AdminCustomer page, but i cannot figure out how to add fields
to the "list-view" 
 
instead of "Titel / gender" right after the CustomerID, i want the Company name...
 
 
 
Found the answer myself:
 
Create "override/controllers/admin/AdminCustomersController.php"

 

after:

$this->fields_list = array(
            'id_customer' => array(
                'title' => $this->l('ID'),
                'align' => 'text-center',
                'class' => 'fixed-width-xs'
            ),
 
 
add:
 
 'company' => array(
                'title' => $this->l('Firma'),
              
            ),
 
Edited by diondp (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...