Closed (fixed)
Project:
Simplify Node Add
Version:
6.x-1.4
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
29 May 2010 at 02:21 UTC
Updated:
4 Jun 2010 at 09:00 UTC
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
| Comment | File | Size | Author |
|---|---|---|---|
| Capture.PNG | 12.14 KB | adrianmak |
Comments
Comment #1
fabianderijkThis isn't a drupal core field, you can add this field via hook_simplify_node_add_gettypes()
Comment #2
boran commentedIts from the CCK Translation module?
You probably need to add something like this:
if (module_exists('translation')) {
$field_types['access']['translation'] = t('Translation settings');
}
Comment #3
fabianderijkClosed, can be implemented via hook