diff --git a/lingotek.module b/lingotek.module
index 6ae4297..633b28b 100644
--- a/lingotek.module
+++ b/lingotek.module
@@ -480,4 +480,30 @@ function lingotek_form_language_admin_edit_form_alter(&$form, FormStateInterface
  */
 function lingotek_form_language_content_settings_form_alter(&$form, FormStateInterface $form_state, $form_id) {
   \Drupal::service('lingotek.language_content_settings_form')->form($form, $form_state);
+  $form['parent_details']['actions']['upload_to_lingotek_checkbox'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Import these settings to Lingotek after saving configuration'),
+    '#default_value' => \Drupal::state()->get('upload_lingotek_field_settings'),
+    '#description' => t('   This will redirect you to the Lingotek settings page after clicking the save button'), 
+  );
+  $form['actions']['submit']['#validate'][] = 'lingotek_form_language_content_settings_form_validate';
+  $redirect_to_lingotek_field_settings = \Drupal::state()->get('redirect_to_lingotek_field_settings');
+  if($redirect_to_lingotek_field_settings){
+     $response = new Symfony\Component\HttpFoundation\RedirectResponse(\Drupal::url('lingotek.settings'));
+     $response->send();
+  }
+  return;
+}
+
+/**
+ * @param array $form
+ * @param \Drupal\Core\Form\FormStateInterface $form_state
+ */
+function lingotek_form_language_content_settings_form_validate(&$form, FormStateInterface $form_state, $form_id) {
+   if($form['parent_details']['actions']['upload_to_lingotek_checkbox']['#value']){
+     \Drupal::state()->set('upload_lingotek_field_settings',TRUE);
+     \Drupal::state()->set('redirect_to_lingotek_field_settings',TRUE);
+   }else{
+     \Drupal::state()->set('upload_lingotek_field_settings',FALSE);
+   }
 }
diff --git a/src/Form/LingotekSettingsTabContentForm.php b/src/Form/LingotekSettingsTabContentForm.php
index 81d8b44..63c1fde 100644
--- a/src/Form/LingotekSettingsTabContentForm.php
+++ b/src/Form/LingotekSettingsTabContentForm.php
@@ -18,6 +18,7 @@ class LingotekSettingsTabContentForm extends LingotekConfigFormBase {
   protected $profiles;
   protected $bundles;
   protected $translatable_bundles;
+  protected $redirect_to_lingotek_field_settings;
 
   /**
    * {@inheritdoc}
@@ -33,6 +34,8 @@ class LingotekSettingsTabContentForm extends LingotekConfigFormBase {
     /** @var \Drupal\lingotek\LingotekConfigurationServiceInterface $lingotek_config */
     $lingotek_config = \Drupal::service('lingotek.configuration');
 
+    $this->redirect_to_lingotek_field_settings = \Drupal::state()->get('redirect_to_lingotek_field_settings');
+
     $entity_type_definitions = \Drupal::entityManager()->getDefinitions();
 
     // Get the profiles
@@ -91,6 +94,10 @@ class LingotekSettingsTabContentForm extends LingotekConfigFormBase {
           '#label' => $this->t('Enabled'),
           '#default_value' => $lingotek_config->isEnabled($entity_id, $bundle_id),
         ];
+        if($this->redirect_to_lingotek_field_settings){
+          $content_translation_manager = \Drupal::service('content_translation.manager');
+          $row['enabled']['#default_value'] = $content_translation_manager->isEnabled($entity_id, $bundle_id);
+        }
         $row['content_type'] = array(
           '#markup' => $bundle['label'],
         );
@@ -118,6 +125,13 @@ class LingotekSettingsTabContentForm extends LingotekConfigFormBase {
 
     $form['#attached']['library'][] = 'lingotek/lingotek.settings';
 
+    if($this->redirect_to_lingotek_field_settings){
+      $form['parent_details']['#open'] = TRUE;
+      $form['parent_details']['list'][$entity_key]['#open'] = TRUE;
+      \Drupal::state()->set('redirect_to_lingotek_field_settings',FALSE);
+      drupal_set_message($this->t('Click the save button to save these Content Language Settings to Lingotek.'),'warning');
+    }
+
     return $form;
   }
 
@@ -241,6 +255,9 @@ class LingotekSettingsTabContentForm extends LingotekConfigFormBase {
             '#title' => $field_definition->getLabel(),
             '#default_value' => $checkbox_choice,
           );
+          if($this->redirect_to_lingotek_field_settings){
+            $field_checkbox['#default_value'] = TRUE;
+          }
           $field_checkboxes[$field_id] = $field_checkbox;
 
 
@@ -255,6 +272,9 @@ class LingotekSettingsTabContentForm extends LingotekConfigFormBase {
               '#default_value' => $properties_checkbox_choice ?: [] ,
               '#attributes' => ['class' => array('field-property-checkbox')],
             );
+            if($this->redirect_to_lingotek_field_settings){
+              $field_checkbox['#default_value'] = TRUE;
+            }
             $field_checkboxes[$field_id . ':properties' ] = $field_checkbox;
           }
         }
@@ -269,6 +289,9 @@ class LingotekSettingsTabContentForm extends LingotekConfigFormBase {
             '#title' => $field_definition->getLabel(),
             '#default_value' => $checkbox_choice,
           );
+          if($this->redirect_to_lingotek_field_settings){
+            $field_checkbox['#default_value'] = TRUE;
+          }
           $field_checkboxes[$field_id] = $field_checkbox;
         }
       }
