overbags Posted July 5, 2022 Share Posted July 5, 2022 ciao a tutti ho effettuato una modifica a ps 1.6.1.24 per poter registrare fino a 4 email per ogni cliente secondo voi nella pagina "clienti" è possibile incolonnare gli indirizzi uno sotto l'altrò per non fare una tabella lunghissima che esce dalla pagina ? il codice modificato in "AdminCustomersController.php" che scrive le email è questo $this->_join = 'LEFT JOIN '._DB_PREFIX_.'gender_lang gl ON (a.id_gender = gl.id_gender AND gl.id_lang = '.(int)$this->context->language->id.')'; $this->_use_found_rows = false; $this->fields_list = array( 'id_customer' => array( 'title' => $this->l('ID'), 'align' => 'text-center', 'class' => 'fixed-width-xs' ), 'title' => array( 'title' => $this->l('Social title'), 'filter_key' => 'a!id_gender', 'type' => 'select', 'list' => $titles_array, 'filter_type' => 'int', 'order_key' => 'gl!name' ), 'firstname' => array( 'title' => $this->l('First name') ), 'lastname' => array( 'title' => $this->l('Last name') ), 'email' => array( 'title' => $this->l('Email address') ), // MODIFICA 1 'email2' => array( 'title' => $this->l('Email address 2') ), 'email3' => array( 'title' => $this->l('Email address 3') ), 'email4' => array( 'title' => $this->l('Email address 4') ), ); Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now