diff --git a/entity_translation_unified_form.module b/entity_translation_unified_form.module
index 138677a..7cd64e6 100644
--- a/entity_translation_unified_form.module
+++ b/entity_translation_unified_form.module
@@ -13,17 +13,29 @@ function entity_translation_unified_form_form_node_type_form_alter(&$form, $form
  * Add an "enable" checkbox to the node type's multilingual settings
  */
 function _entity_translation_unified_form_form_node_type_form_process(&$form, $form_state) {
-  $form['i18n']['entity_translation_unified_form'] = array(
-      '#title' => t('Unified form'),
-      '#type' => 'fieldset',
-      '#weight' => 10,
-  );
-  $form['i18n']['entity_translation_unified_form']['entity_translation_unified_form_enable'] = array(
-      '#title' => t('Place all entity-translatable fields for all enabled languages inline on the node add/edit form'),
-      '#type' => 'checkbox',
-      '#default_value' => variable_get('entity_translation_unified_form_enable_' . $form['#node_type']->type, FALSE),
-      '#disabled' => FALSE,
-  );
+  if (entity_translation_enabled('node')) {
+    $type = $form['#node_type']->type;
+
+    // Hide settings when entity translation is disabled for this content type.
+    $states = array(
+      'visible' => array(
+        ':input[name="entity_translation_unified_form"]' => array('value' => ENTITY_TRANSLATION_ENABLED),
+      ),
+    );
+    $form['workflow']['entity_translation_unified_form'] = array(
+        '#title' => t('Unified form'),
+        '#type' => 'fieldset',
+        '#weight' => 10,
+        '#states' => $states,
+    );
+    $form['workflow']['entity_translation_unified_form']['entity_translation_unified_form_enable'] = array(
+        '#title' => t('Place all entity-translatable fields for all enabled languages inline on the node add/edit form'),
+        '#type' => 'checkbox',
+        '#default_value' => variable_get('entity_translation_unified_form_enable_' . $type, FALSE),
+        '#disabled' => FALSE,
+        '#states' => $states,
+    );
+  }
   return $form;
 }
 
