Connect filters to a listing
SkillAI & modelsConnect JetSmartFilters controls to a native JSF Listing or another supported listing with the correct provider, query ID, query variable, apply type, and pagination contract. Use when building a filterable listing, debugging a filter that updates the wrong widget or does nothing, configuring content_provider, _element_id, additional providers, pagination, AJAX, reload, or mixed filtering.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Connect filters to a listing skill
What this skill tells your AI
The instructions your AI receives, as published by lonsdale201/wp-agent-skills in jetsmartfilter/jsf-listing-integration/SKILL.md and read by ahel’s review.
Treat the provider/query ID pair as a foreign key. Most apparent AJAX bugs are identity or query-variable mismatches.
Native JSF Listing recipe
- Create the listing and its item card, then place the JSF Listing widget/block/element on the page.
- Set every filter's content provider to JSF Listing
(
jsf-listing). - Give the listing instance a stable, unique query ID. JSF uses the rendered
_element_id; if no ID is available it falls back todefault. - Put the same query ID on every related filter, Apply button, Remove Filters, Active Filters/Tags, and Pagination control.
- Map each filter to a query variable supported by the listing query: taxonomy, meta, search, sort, alphabet, or an intentionally handled plain query variable.
- Start with AJAX apply type. Use reload only when the destination query must be reconstructed during a normal page request; test mixed mode in both paths.
- Test the unfiltered page, one filter, combined filters, reset, no results, pagination, back/forward navigation, and two rapid changes.
Targeting matrix
| Symptom | First check |
|---|---|
| Nothing happens | The JSF public script loaded and provider is valid |
| Wrong listing changes | Query ID collision or missing query ID |
| AJAX works but reload does not | Provider's request path / query hook is not wired |
| First page works, pagination does not | Provider props or pagination control targets another pair |
| Results change but UI is stale | Post-render code did not use the JSF lifecycle events |
| Additional listing is unchanged | Additional provider pair was not configured explicitly |
Do not infer the query ID from a database listing ID. The native provider's listing ID selects the saved listing definition; its query ID selects the rendered instance.
Native provider contract
The built-in provider uses:
- provider ID
jsf-listing; - wrapper selector
.jsf-listing; - item selector
.jsf-listing__item; - wrapper action
replace; - in-depth selector lookup enabled.
It stores the initial query and pagination statistics before the frontend settings are localized. During AJAX it rebuilds the saved listing, merges the parsed JSF arguments into the listing query object, and renders it.
Source compatibility warning: the 3.8.3.1 stored-settings key is misspelled
lisitng_id, and AJAX reads the same misspelling. Normal configuration code
should not touch it. Code that filters
jet-smart-filters/providers/jsf-listing/stored-settings must preserve that
exact key until the installed version changes it.
Integration checklist
- Use unique IDs that are valid for the target builder and stable across page renders.
- Do not bind one pagination control to multiple query IDs.
- Prefer event delegation inside replaced content. Direct listeners disappear when the provider wrapper is replaced.
- Keep per-page limits bounded and return accurate
found_posts,max_num_pages, andpagefor custom queries. - If the renderer is not represented by a built-in provider, use
jsf-custom-provider-query; changing CSS selectors alone is not a complete provider integration.
References
Verified against JetSmartFilters 3.8.3.1 source:
includes/providers/jsf-listing.php:19-220includes/providers/base.php:15-101includes/providers/manager.php:24-146includes/filters/manager.php:64-111includes/listing/render/listing-base.php:31-183,335-366includes/listing/views/blocks/render.phpincludes/listing/views/widgets/listing.phpincludes/listing/views/bricks/listing.php
Signals
- GitHub stars
- 22
- Forks
- 2
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
jsf-listing-integration- Source
- github.com/lonsdale201/wp-agent-skills