Some people have approached me with an idea like this one: They have a rather large table which they maintain as a list for some sort of items (e.g. products). On certain pages however, they do not want to show the entire table, but e.g. only items with a certain keyword in a column.
That’s the use case for which the following filtering extension can be used. It adds another parameter filter to the Shortcode that gets passed one or more search terms (connected with a logical operator):
[table id=1 filter="word1&&word2" /]
Then, only those rows of the table are shown, that have columns that exactly match the search term(s). In the example, only rows where one column has the exact value “word1″ and one column has the exact value “word2″, will be shown.
» Read more: Extension 6: Showing only rows that match a filter

