In this guide, details on how to automatically apply Elementor Gallery Pro filters on page load will be explained. By following the steps below, you can achieve the effect of automatically filtering a specific gallery on page load.
How to Filter Elementor Gallery Pro Elements to a Specific Gallery on Page Load
![Image [1] - How to Apply Elementor Gallery Pro Filter Automatically on Page Load - Photon Fluctuation Network | Professional WordPress Repair Service, Global Reach, Fast Response](https://www.361sale.com/wp-content/uploads/2024/05/2024052815033713.png)
To set the Elementor Gallery Pro element to filter to a specific gallery, appending the URL to the ?data-gallery-index=1
. This way, specific gallery filters will automatically open when the page loads.
Filters on Elementor Gallery Pro Page Load Code
move1: You need to add an HTML element on the same page as Elementor Gallery Pro. Follow the steps below:
![Image [2] - How to Apply Elementor Gallery Pro Filter Automatically on Page Load - Photon Fluctuation Network | Professional WordPress Repair Service, Global Reach, Fast Response](https://www.361sale.com/wp-content/uploads/2024/05/2024052815094296.png)
- Open the Elementor editor and select the page to which you wish to add the filter.
- Locate the Gallery Pro element on the page.
- In the left panel, drag an HTML element onto the page and place it in the same position as the Gallery Pro element.
Step 2: Insert JavaScript Code
Insert the following JavaScript code into an HTML element to apply a specific filter when the page loads.
document.addEventListener("DOMContentLoaded", function() {// URLconst urlParams = new URLSearchParams(window.location.search);; const galleryIndex = urlParams.get('data-gallery-')const galleryIndex = urlParams.get('data-gallery-index');if (galleryIndex) {//Gallery Pro elementconst galleryProElement = document.querySelector('.your-gallery-pro-class'); // replace with the actual class name of your Gallery Pro elementif (galleryProElement) {// Simulate a click or selection to apply the filterconst filterButtons = galleryProElement.querySelectorAll('.gallery-filter-button'); // replace with your actual filter button class nameif (filterButtons[galleryIndex]) {filterButtons[galleryIndex].click();}}}});</scriptdocument.addEventListener("DOMContentLoaded", function() { // URL const urlParams = new URLSearchParams(window.location.search);; const galleryIndex = urlParams.get('data-gallery-') const galleryIndex = urlParams.get('data-gallery-index'); if (galleryIndex) { //Gallery Pro element const galleryProElement = document.querySelector('.your-gallery-pro-class'); // replace with the actual class name of your Gallery Pro element if (galleryProElement) { // Simulate a click or selection to apply the filter const filterButtons = galleryProElement.querySelectorAll('.gallery-filter-button'); // replace with your actual filter button class name if (filterButtons[galleryIndex]) { filterButtons[galleryIndex].click(); } } } }); </scriptdocument.addEventListener("DOMContentLoaded", function() { // URL const urlParams = new URLSearchParams(window.location.search);; const galleryIndex = urlParams.get('data-gallery-') const galleryIndex = urlParams.get('data-gallery-index'); if (galleryIndex) { //Gallery Pro element const galleryProElement = document.querySelector('.your-gallery-pro-class'); // replace with the actual class name of your Gallery Pro element if (galleryProElement) { // Simulate a click or selection to apply the filter const filterButtons = galleryProElement.querySelectorAll('.gallery-filter-button'); // replace with your actual filter button class name if (filterButtons[galleryIndex]) { filterButtons[galleryIndex].click(); } } } }); </script
Make sure to put the code in the .your-gallery-pro-class
respond in singing .gallery-filter-button
Replace it with the name of the class you are actually using.
Step 3: Update the page URL
Append the URL of the page to be filtered with ?data-gallery-index=1
(or other index values), for example:
https://yourwebsite.com/your-page?data-gallery-index=1https://yourwebsite.com/your-page?data-gallery-index=1https://yourwebsite.com/your-page?data-gallery-index=1
Specific gallery filters will automatically open when the page loads.
Summary:
![Image [3] - How to Apply Elementor Gallery Pro Filter Automatically on Page Load - Photon Fluctuation Network | Professional WordPress Repair Service, Global Reach, Fast Response](https://www.361sale.com/wp-content/uploads/2024/05/2024052815072164.png)
Get the URL of each Elementor Gallery Pro filter, which works by reusing the attributes on the Elementor Gallery Pro filter title with the following logic:
If the "All" option is present, the value is "All".
For all the others, it follows the index value, starting from 0.
firstin-"All" filtersdata-gallery-index=0. The next filter in thedata-gallery-index=1And so on.
Simply add the?data-gallery-index=0This will open the gallery filter on page load.
![Image [4] - How to Apply Elementor Gallery Pro Filter Automatically on Page Load - Photon Fluctuation Network | Professional WordPress Repair Service, Global Reach, Fast Response](https://www.361sale.com/wp-content/uploads/2024/05/2024052709390420.jpg)
Link to this article:https://www.361sale.com/en/10725
The article is copyrighted and must be reproduced with attribution.
No comments