Hi
I have a problem,
The problem is a country can only have one zone in selection...
If add another country it'll be a big trouble because it will also appear In the registration field...
How can change this?
in *_country table in database, I add new "id_zone2". and I think , I should change AdminCountriesController.php ...
array(
'type' => 'select',
'label' => $this->l('Zone2'),
'name' => 'id_zone2',
'options' => array(
'query' => Zone::getZones(),
'id' => 'id_zone2',
'name' => 'name'
),
'hint' => $this->l('Geographical region.')
),
and now I add one new zone filed in backend, but I can't save it
please help me to fix this problem...
Thanks