diff --git a/handlers/views_handler_filter_dynamic_fields.inc b/handlers/views_handler_filter_dynamic_fields.inc
index 4370e5a..7ff5e35 100755
--- a/handlers/views_handler_filter_dynamic_fields.inc
+++ b/handlers/views_handler_filter_dynamic_fields.inc
@@ -53,6 +53,11 @@ class views_handler_filter_dynamic_fields extends views_handler_filter {
       if (!empty($filterable_fields) && !isset($filterable_fields[$field_name])) {
         continue;
       }
+      
+      // If this is included in the filterable_fields_excluded, then continue.
+      if( in_array($field_name, array_keys($this->options['filterable_fields_excluded'])) ) {
+        continue;
+      }
 
       if (!isset($_SESSION[$this->view->name]['perm_exc']) && $field['exclude']) {
         // Fields already marked as 'exclude from display' in the original view should be omitted
