diff --git a/module/VuFind/src/VuFind/View/Helper/Root/SearchBox.php b/module/VuFind/src/VuFind/View/Helper/Root/SearchBox.php
new file mode 100644
index 0000000000000000000000000000000000000000..32b8d5a8e4e0ee4d5c2ca14a960d5e8a25f3b824
--- /dev/null
+++ b/module/VuFind/src/VuFind/View/Helper/Root/SearchBox.php
@@ -0,0 +1,74 @@
+<?php
+/**
+ * Search box view helper
+ *
+ * PHP version 5
+ *
+ * Copyright (C) Villanova University 2010.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ * @category VuFind2
+ * @package  View_Helpers
+ * @author   Demian Katz <demian.katz@villanova.edu>
+ * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
+ * @link     http://vufind.org/wiki/vufind2:developer_manual Wiki
+ */
+namespace VuFind\View\Helper\Root;
+
+/**
+ * Search box view helper
+ *
+ * @category VuFind2
+ * @package  View_Helpers
+ * @author   Demian Katz <demian.katz@villanova.edu>
+ * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
+ * @link     http://vufind.org/wiki/vufind2:developer_manual Wiki
+ */
+class SearchBox extends \Zend\View\Helper\AbstractHelper
+{
+    /**
+     * Get an array of filter information for use by the "retain filters" feature
+     * of the search box. Returns an array of arrays with 'id' and 'value' keys used
+     * for generating hidden checkboxes.
+     *
+     * @param array $filterList      Standard filter information
+     * @param array $checkboxFilters Checkbox filter information
+     *
+     * @return array
+     */
+    public function getFilterDetails($filterList, $checkboxFilters)
+    {
+        $results = array();
+        $i = 0;
+        foreach ($filterList as $field => $data) {
+            foreach ($data as $value) {
+                $results[] = array(
+                    'id' => 'applied_filter_' . ++$i,
+                    'value' => "$field:\"$value\""
+                );
+            }
+        }
+        $i = 0;
+        foreach ($checkboxFilters as $current) {
+            if ($current['selected']) {
+                $results[] = array(
+                    'id' => 'applied_checkbox_filter_' . ++$i,
+                    'value' => $current['filter']
+                );
+            }
+        }
+        return $results;
+    }
+}
\ No newline at end of file
diff --git a/themes/blueprint/templates/search/searchbox.phtml b/themes/blueprint/templates/search/searchbox.phtml
index fb8d70216da9b828c9582c897080119bec2b78e0..858d2217c929eccf767865491a43f7f4de9b246a 100644
--- a/themes/blueprint/templates/search/searchbox.phtml
+++ b/themes/blueprint/templates/search/searchbox.phtml
@@ -55,19 +55,6 @@
         <a href="<?=$this->url($advSearch)?>" class="small"><?=$this->transEsc("Advanced")?></a>
       <? endif; ?>
 
-      <?
-      /* Do we have any checkbox filters? */
-      $hasCheckboxFilters = false;
-      if (isset($this->checkboxFilters) && count($this->checkboxFilters) > 0) {
-        foreach ($this->checkboxFilters as $current) {
-          if ($current['selected']) {
-            $hasCheckboxFilters = true;
-            break;
-          }
-        }
-      }
-      ?>
-
       <? $shards = $options->getShards(); if ($options->showShardCheckboxes() && !empty($shards)): ?>
         <?
         $selectedShards = isset($this->selectedShards)
@@ -79,27 +66,21 @@
           <input type="checkbox" <?=$isSelected ? 'checked="checked" ' : ''?>name="shard[]" value='<?=$this->escapeHtml($shard)?>' /> <?=$this->transEsc($shard)?>
         <? endforeach; ?>
       <? endif; ?>
-      <? if ((isset($this->filterList) && is_array($this->filterList) && count($this->filterList) > 0) || $hasCheckboxFilters): ?>
+      <?
+        $filterDetails = $this->searchbox()->getFilterDetails(
+            isset($this->filterList) && is_array($this->filterList) ? $this->filterList : array(),
+            isset($this->checkboxFilters) && is_array($this->checkboxFilters) ? $this->checkboxFilters : array()
+        );
+      ?>
+      <? if (!empty($filterDetails)): ?>
         <? $defaultFilterState = $options->getRetainFilterSetting() ? ' checked="checked"' : ''; ?>
         <div class="keepFilters">
           <input type="checkbox"<?=$defaultFilterState?> id="searchFormKeepFilters"/> <label for="searchFormKeepFilters"><?=$this->transEsc("basic_search_keep_filters")?></label>
           <div class="offscreen">
-            <? if (isset($this->filterList) && is_array($this->filterList)): ?>
-              <? $i = 0; foreach ($this->filterList as $field => $data): ?>
-                <? foreach ($data as $value): ?>
-                  <input id="applied_filter_<?=++$i?>" type="checkbox"<?=$defaultFilterState?> name="filter[]" value="<?=$this->escapeHtml($field)?>:&quot;<?=$this->escapeHtml($value)?>&quot;" />
-                  <label for="applied_filter_<?=$i?>"><?=$this->escapeHtml($field)?>:&quot;<?=$this->escapeHtml($value)?>&quot;</label>
-                <? endforeach; ?>
-              <? endforeach; ?>
-            <? endif; ?>
-            <? if ($hasCheckboxFilters): ?>
-              <? $i = 0; foreach ($checkboxFilters as $current): ?>
-                <? if ($current['selected']): ?>
-                  <input id="applied_checkbox_filter_<?=++$i?>" type="checkbox"<?=$defaultFilterState?> name="filter[]" value="<?=$this->escapeHtml($current['filter'])?>" />
-                  <label for="applied_checkbox_filter_<?=$i?>"><?=$this->escapeHtml($current['filter'])?></label>
-                <? endif; ?>
-              <? endforeach; ?>
-            <? endif; ?>
+            <? foreach ($filterDetails as $current): ?>
+              <input id="<?=$this->escapeHtml($current['id'])?>" type="checkbox"<?=$defaultFilterState?> name="filter[]" value="<?=$this->escapeHtml($current['value'])?>" />
+              <label for="<?=$this->escapeHtml($current['id'])?>"><?=$this->escapeHtml($current['value'])?></label>
+            <? endforeach; ?>
           </div>
         </div>
       <? endif; ?>
diff --git a/themes/root/theme.config.php b/themes/root/theme.config.php
index 9f0a28fc95111c7a93b857a79d32d9a940d11798..101cfca5b493d012c38ccb050f028dcadc9c41d7 100644
--- a/themes/root/theme.config.php
+++ b/themes/root/theme.config.php
@@ -103,6 +103,9 @@ return array(
                     $sm->getServiceLocator()->get('VuFind\Config')->get('config')
                 );
             },
+            'searchbox' => function ($sm) {
+                return new \VuFind\View\Helper\Root\SearchBox();
+            },
             'searchoptions' => function ($sm) {
                 return new VuFind\View\Helper\Root\SearchOptions(
                     $sm->getServiceLocator()->get('VuFind\SearchOptionsPluginManager')