Installing and configuring
First of all download
last release and save SPListViewFilter.wsp on your computer;
Installing solution using STSADM.EXE utility
To install SPListViewFilter solution:
1. Add the solution
stsadm -o addsolution -filename [Path to SPListViewFilter.wsp file]
2. Deploy the solution
stsadm -o deploysolution -name SPListViewFilter.wsp -url [SharePoint Site URL]
3. Active feature
stsadm -o activatefeature -id c403ae24-8713-4966-9157-d188933fd71a -url [SharePoint Site URL] -force
Installing solution using PowerShell
1. Add the solution
Add-SPSolution -LiteralPath [Path to SPListViewFilter.wsp file]
2. Deploy the solution
Install-SPSolution SPListViewFilter.wsp -GacDeployment -WebApplication [SharePoint Site URL]
3. Active feature
Enable-SPFeature -Identity c403ae24-8713-4966-9157-d188933fd71a -url [SharePoint Site URL]
After installation there is ListViewFilter web part in SharePoint WebPart Gallery.
To use it, add it on list view page.
Configuring SPListViewFilter
After adding SPListViewFilter web part on the page it have to make it clear which ListViewWebPart can be filtered. It requires to connect SPListViewFilter and ListViewWebPart web parts.
To configure fields witch be able to filter data in list view open SPListViewFilter web part settings block and click "Settings" link to show the dialog:

On this dialog you can mark fields you want to use to filter data, change its caption, choose filter type and position. To save changes click
Apply button and then
OK button to send new configuration to web part.