@datakick Where have YOU been all my thirty bees life? :)
This was absolutely perfect. I really appreciate it. Sending a hug (because I can. I can do anything I want. lol)
For others: I changed the field separator and multiple value separator for the back office CSV imports by following @datakick's example:
Edited this file:
/controllers/admin/AdminImportController.php
Line 568 Changed the comma to a caret (^)
Line 570 Changed the semicolon to a comma as follows:
$this->separator = ($separator = Tools::substr(strval(trim(Tools::getValue('separator'))), 0, 1)) ? $separator : '^';
$this->convert = false;
$this->multiplevalueseparator = ($separator = Tools::substr(strval(trim(Tools::getValue('multiplevalueseparator'))), 0, 1)) ? $separator : ',';
}