diff --git a/sites/all/modules/word_link/word_link.module b/sites/all/modules/word_link/word_link.module
index ae87e43..1e30b59 100644
--- a/sites/all/modules/word_link/word_link.module
+++ b/sites/all/modules/word_link/word_link.module
@@ -238,6 +238,8 @@ function _word_link_settings($form, &$form_state, $filter, $format, $defaults) {
     '#description' => t('A list of HTML tags that will be ignored. Never enter here tags that are not text. E.g. @tags.', array('@tags' => '<img>')),
     '#default_value' => $filter->settings['word_link_tags_except'],
   );
+  
+  /*
   $settings['word_link_content_types'] = array(
     '#type' => 'checkboxes',
     '#title' => t('Content types'),
@@ -245,6 +247,7 @@ function _word_link_settings($form, &$form_state, $filter, $format, $defaults) {
     '#options' => node_type_get_names(),
     '#default_value' => $filter->settings['word_link_content_types'],
   );
+  */
 
   return $settings;
 }
@@ -284,6 +287,7 @@ function word_link_convert_text($words, $text, $settings) {
   // Check if current node belongs to content type
   // in which need to convert words.
   // @todo: Need to check when node shows on another path.
+  /*
   if (isset($args[0]) && $args[0] == 'node' && isset($args[1])) {
     $nodes = word_link_get_node_types();
     $type = isset($nodes[$args[1]]) ? $nodes[$args[1]]->type : NULL;
@@ -292,6 +296,7 @@ function word_link_convert_text($words, $text, $settings) {
       return $text;
     }
   }
+  */
 
   // Default HTML tag used in theme.
   $tag = 'a';
