diff --git a/composer.json b/composer.json
index c4a7076de9a4858fa597cc54ada7a34d3bfbaaa6..2660de86ec32999994e0f3dac2550360443bbc38 100644
--- a/composer.json
+++ b/composer.json
@@ -261,6 +261,7 @@
     "drupal/menu_position": "1.x-dev#a337956f24053d337c399ad86c1f78d4d4235702",
     "drupal/mail_edit": "1.x-dev#bcd0041830d8581b36e6211f0c8eabd8caf9652b",
     "drupal/taxonomy_access_fix": "2.1",
+    "drupal/better_exposed_filters": "3.0-alpha2",
     "drupal/libraries": "3.x-dev#061ead081c92a6209b09eaf23b4e3103f360946e",
     "drupal/layout_plugin": "1.0-alpha23",
     "drupal/xmlsitemap": "1.0-alpha2",
diff --git a/drupal-org.make b/drupal-org.make
index 5264778cd3fff7f936e57baa1f61d460a5c62213..6bb716e1fc061edae7d5b99719b5da2c11bfb869 100644
--- a/drupal-org.make
+++ b/drupal-org.make
@@ -196,6 +196,9 @@ projects[mail_edit][download][branch] = 8.x-1.x
 projects[taxonomy_access_fix][type] = module
 projects[taxonomy_access_fix][version] = 2.1
 
+projects[better_exposed_filters][type] = module
+projects[better_exposed_filters][version] = 3.0-alpha2
+
 ;;;;;;;;;;;;;;;;;;;;;
 ;; Contrib modules for Varbase SEO.
 ;;;;;;;;;;;;;;;;;;;;;
diff --git a/varbase.info.yml b/varbase.info.yml
index d1e038b058b993a215d7ba6cc028e4d316196f8f..b0569549b731e6a0535a541e1b77d188f7586767 100644
--- a/varbase.info.yml
+++ b/varbase.info.yml
@@ -102,6 +102,7 @@ dependencies:
   - smtp
   - maxlength
   - menu_position
+  - better_exposed_filters
 
 themes:
   # Contrib themes.
diff --git a/varbase.install b/varbase.install
index 153d4ee63859fc5d840b782bae86dfe3a14adce4..49a8c72217994413181f513c1c8818475e0c3ac5 100644
--- a/varbase.install
+++ b/varbase.install
@@ -266,5 +266,10 @@ function varbase_update_8003() {
   if (!\Drupal::moduleHandler()->moduleExists('menu_position')) {
     \Drupal::service('module_installer')->install(['menu_position'], FALSE);
   }
+  
+  // Enable Better Exposed Filters module.
+  if (!\Drupal::moduleHandler()->moduleExists('better_exposed_filters')) {
+    \Drupal::service('module_installer')->install(['better_exposed_filters'], FALSE);
+  }
 
 }