diff --git a/README.md b/README.md
index 86ed1fd..097e672 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,12 @@ Install as usual, see
 https://drupal.org/documentation/install/modules-themes/modules-7 for further
 information.
 
+VIEW MODE CONFIGURATION
+------------
+
+View modes can be set up in the site configuration with the UI.
+Token does not try to configure them on it's own anymore, Drupal 8 has
+UI options to manually configure view mode for tokens.
 
 TROUBLESHOOTING
 ---------------
diff --git a/token.install b/token.install
index 664b1af..67bbf2e 100644
--- a/token.install
+++ b/token.install
@@ -37,31 +37,6 @@ function token_requirements($phase = 'runtime') {
 }
 
 /**
- * Implements hook_install().
- */
-function token_install() {
-  // Create a token view mode for each entity type.
-  $info = \Drupal::entityTypeManager()->getDefinitions();
-  foreach ($info as $entity_type => $entity_type_info) {
-    // We're only interested in entity types with a view builder.
-    if (!$entity_type_info->getViewBuilderClass()) {
-      continue;
-    }
-    // Try to find a token view mode for that entity type.
-    $storage = \Drupal::entityTypeManager()->getStorage('entity_view_mode');
-    // Add a token view mode if it does not already exist.
-    if (!$storage->load("$entity_type.token")) {
-      $storage->create(array(
-        'targetEntityType' => $entity_type,
-        'id' => "$entity_type.token",
-        'status' => TRUE,
-        'label' => t('Token'),
-      ))->save();
-    }
-  }
-}
-
-/**
  * Build a list of Drupal 6 tokens and their Drupal 7 token names.
  */
 function _token_upgrade_token_list() {
