I used i18n module.

How do I hide "translation settings" field in node edit form ?

I cannot find this field in simply node add configure page

CommentFileSizeAuthor
Capture.PNG12.14 KBadrianmak

Comments

fabianderijk’s picture

This isn't a drupal core field, you can add this field via hook_simplify_node_add_gettypes()

boran’s picture

Its from the CCK Translation module?
You probably need to add something like this:
if (module_exists('translation')) {
$field_types['access']['translation'] = t('Translation settings');
}

fabianderijk’s picture

Status: Active » Closed (fixed)

Closed, can be implemented via hook