Submit button flashes briefly before this module hides it. It would be tidier if the submit button was prevented from being display in the first place, Purely a cosmetic bug.

Comments

hefox’s picture

May have non-javascript issues if hiding it before unload, due to non javascript browsers needing to see the button.

jsheffers’s picture

This can be fixed by simply using CSS to target the element and hiding it.

.views-exposed-widget #id-of-your-submit-button { display:none !important; }

The above code worked for me. You would need to get the ID of your submit button not mine but .views-exposed-widget should work across the board.