diff --git a/themes/bootprint/templates/search/results.phtml b/themes/bootprint/templates/search/results.phtml
index 8afd4029f5872c8809353d805d86f930d48b7633..ee7a34b091fda27b98286907062cd49ec2d58f36 100644
--- a/themes/bootprint/templates/search/results.phtml
+++ b/themes/bootprint/templates/search/results.phtml
@@ -94,13 +94,9 @@
     <? endforeach; ?>
   <? else: ?>
     <form class="form-inline" method="post" name="bulkActionForm" action="<?=$this->url('cart-home')?>">
-      <? if ($this->cart()->isActive()): ?>
-        <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', array('idPrefix' => ''))?>
-      <? endif; ?>
+      <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', array('idPrefix' => ''))?>
       <?=$this->render('search/list-' . $this->params->getView() . '.phtml')?>
-      <? if ($this->cart()->isActive()): ?>
-        <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', array('idPrefix' => 'bottom_'))?>
-      <? endif; ?>
+      <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', array('idPrefix' => 'bottom_'))?>
       <?=$this->paginationControl($this->results->getPaginator(), 'Sliding', 'search/pagination.phtml', array('results' => $this->results))?>
     </form>
 
diff --git a/themes/bootstrap/templates/search/results.phtml b/themes/bootstrap/templates/search/results.phtml
index 9175c1b349f36ce6706d6c472d16f8b609cc7586..09a89d5ea869f0e128ef76336ee12a3a826a0d3b 100644
--- a/themes/bootstrap/templates/search/results.phtml
+++ b/themes/bootstrap/templates/search/results.phtml
@@ -94,13 +94,9 @@
     <? endforeach; ?>
   <? else: ?>
     <form class="form-inline" method="post" name="bulkActionForm" action="<?=$this->url('cart-home')?>">
-      <? if ($this->cart()->isActive()): ?>
-        <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', array('idPrefix' => ''))?>
-      <? endif; ?>
+      <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', array('idPrefix' => ''))?>
       <?=$this->render('search/list-' . $this->params->getView() . '.phtml')?>
-      <? if ($this->cart()->isActive()): ?>
-        <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', array('idPrefix' => 'bottom_'))?>
-      <? endif; ?>
+      <?=$this->context($this)->renderInContext('search/bulk-action-buttons.phtml', array('idPrefix' => 'bottom_'))?>
       <?=$this->paginationControl($this->results->getPaginator(), 'Sliding', 'search/pagination.phtml', array('results' => $this->results))?>
     </form>