В init.php:
AddEventHandler("iblock", "OnBeforeIBlockSectionUpdate", "MyOnBeforeIBlockSectionUpdate");
function MyOnBeforeIBlockSectionUpdate(&$arFields){
if(($_GET['type'] == 'catalog') && ($_GET['mode'] == 'import') && strstr($_GET['filename'], 'import') &&($arFields["IBLOCK_ID"]==10)){
//unset($arFields["NAME"]);
unset($arFields["CODE"]);
//unset($arFields["IBLOCK_SECTION_ID"]);
}
}
$arFields["IBLOCK_ID"]==10 - Заменить на ваш
Ответ нашёл здесь:
AddEventHandler("iblock", "OnBeforeIBlockSectionUpdate", "MyOnBeforeIBlockSectionUpdate");
function MyOnBeforeIBlockSectionUpdate(&$arFields){
if(($_GET['type'] == 'catalog') && ($_GET['mode'] == 'import') && strstr($_GET['filename'], 'import') &&($arFields["IBLOCK_ID"]==10)){
//unset($arFields["NAME"]);
unset($arFields["CODE"]);
//unset($arFields["IBLOCK_SECTION_ID"]);
}
}
$arFields["IBLOCK_ID"]==10 - Заменить на ваш
Ответ нашёл здесь: