If I hide all the exposed filters I still want to be able to filter the view with url query strings

better_exposed_filters_exposed_form_plugin.inc line 775

    // If our form has no visible filters, hide the submit button.
    $form['submit']['#access'] = $show_apply;
    $form['reset']['#access'] = $show_apply;

should be

    // If our form has no visible filters, hide the submit button.
    if (!$show_apply) {
      $form['submit']['#attributes']['class'][] = 'element-hidden';
      $form['reset']['#attributes']['class'][] = 'element-hidden';
    }

Comments

mikeker’s picture

Issue summary: View changes
Status: Active » Fixed

Issue queue cleanup. My apologies for taking so long to get to this issue.

Using element-hidden is a much better way to handle this. Thanks! This also pointed out an issue where a pager of any short would show the apply button.

  • mikeker committed 95e707e on 7.x-3.x
    Issue #1446952: setting form submit button access to false breaks the...

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.