?filter=category1
) to links on the Home page.category1-btn
) to filter buttons on the Filters page.You need to pass a parameter from the Home page to the Filters page and use custom JavaScript to activate the correct button. Follow these steps:
filters.html?filter=category1
.category1
with a relevant value that corresponds to a button on the Filters page.id="category1-btn"
for the button you want to activate when ?filter=category1
is in the URL.Place this script inside your Filters page (before </body>
in Page Settings or in an Embed Code block):
```javascript
document.addEventListener("DOMContentLoaded", function() {
const params = new URLSearchParams(window.location.search);
const filterValue = params.get("filter");
if (filterValue) {
const targetButton = document.getElementById(filterValue + "-btn");
if (targetButton) {
targetButton.click(); // Simulate a click on the button
}
}
});
```
This script:
Retrieves the filter parameter (filter=category1
).
Finds the matching button (e.g., id="category1-btn"
).
Simulates a click on the button to activate the filter.
Pass a query parameter from the Home page link (?filter=category1
), assign matching IDs to buttons on the Filters page, and use JavaScript to detect and "click" the correct button automatically.