Hi.
You can add an ‘All’ option to your dropdown by adding the following code inside the onReady function:
$w(“#dropdown”).options = $w(“#dropdown”).options.unshift({“label”: “All”, “value”: “all”});
Alternatively, you can create a separate filter function so that you can manage your filters more easily. See this forum post for example.
Good luck!