8944 comments found.
Hi,
I’ve just purchased PRO. I’ve set up a filter. None of the filter options appear in my block builder. I an using Twenty Twenty Four Theme. Can you assist please
Hi dwhuggs
Thank you for choosing Filter Everything PRO.
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Also, please attach the link to the exact page where you are trying to make the filters work so that we can test it on that page.
Best Regards,
Victor
Credentials sent page_id=855 (it’s a test page)
Hi dwhuggs
The page needs to be published, so we have published it and placed a copy of an existing filter set on it. Please check it.
Best Regards,
Victor
Hi Victor. None of the filter options appear in my block builder The filter I’ve create is not the one displayed on the page
Hi dwhuggs
This is how it is looking on he test 2 page during page editing: https://prnt.sc/ZTyBME14OdPi
This is how it is looking on the front end when you open the test 2 page: https://prnt.sc/msQCbLri5F81
The link to the page is: your_site_url.com/test-2/, where the first part should be replaced with your site URL. Or would you like the filters to be displayed on another page?
Best Regards,
Victor
I have a website that I am trying to filter blog posts. I have the Filter Everything Pro and a filter setup on my category page for the posts. I see the filter with counts (i chose to use the dropdown), but when I select any of the filters, it isn’t filtering any of the posts. It still shows them all.
I can’t figure out what I am doing wrong with it. I am using the Avada theme and I added the shortcode to the top of the page. I see the posts and the filter, but the filter isn’t doing anything. I can provide a login to the site if that would help. Let me know.
Hi jhlarsen
Thank you for choosing Filter Everything PRO.
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Also, please attach the link to the exact page where you are trying to make your filters work, so we can test it there.
Best Regards,
Victor
Credentials sent. Thank you Victor!
Hi jhlarsen
We have checked the site, and the issue is related to WP Engine caching.
Please contact them to disable or properly configure the object cache so that it does not cache queries on the pages, or at least on the pages where you plan to use filters, in order to allow post filtering to work correctly.
Best Regards,
Victor
Hello, filters urls like /en/news-events/_cat-corporate-news-or-corporate-successes-or-high-temperatures-or-self-lubricating/ are constantly requested by bots drowning our CPU. We need immediate fix for this!
Hi marxsvjetlana64
You can turn off the permalinks manager so the filters will use GET parameters with the following code snippet:
define( 'FLRT_PERMALINKS_ENABLED', false );
After you add the code snippet, you can go to the filter set and click the Update button so the filters will use GET params.
Usually, bots do not crawl the GET parameters.
Best Regards,
Victor
where we need to add this?
You can use this plugin to add a PHP snippet: https://wordpress.org/plugins/code-snippets/
Best Regards,
Victor
Can I put it into functions php?
Hi marxsvjetlana64
Yes, you can place it in the functions.php file as well.
Best Regards,
Victor
Dear support team,
I have created a filter set using your plugin and it is working perfectly so far.
I do have a question regarding the product categories filter. At the moment, I am using a dropdown menu that displays all categories and subcategories, which makes the list very long and cluttered.
I noticed that it is possible to manually include or exclude specific categories. However, since our store contains hundreds of categories, configuring this manually would be very timeconsuming.
I was wondering if there is an alternative or more efficient way to:
limit the visible categories in the dropdown,
automatically group categories,
or include/exclude categories (for example based on parent categories).
Any advice or best practice for handling large category structures would be greatly appreciated.
Thank you in advance for your help.
Kind regards, Michel
Hi Michel
If you want to hide category terms that have a count of 0, you can hide them all using this option: https://prnt.sc/rOJpOPj22eKC
Or you can use checkboxes, with a hierarchy option (it can be turned on from the “more options” menu when using checkboxes as a view for a category filter).
Also, you can use the hook “wpc_terms_before_display” with your own custom coding to remove the required terms from each page separately: https://filtereverything.pro/resources/hooks/
In the future, we are planning to add a hierarchy option to the dropdowns as well.
Best Regards,
Victor
Hello Victor,
I am not a developer, so please excuse me if my interpretation is not fully accurate, but I wanted to report something I noticed in case it helps.
On a WooCommerce site running Filter Everything Pro, I am seeing a recurring PHP warning in the logs every few seconds:
``` PHP Warning: Undefined array key “view” in /wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php on line 937 ```
This warning appears continuously while the site is running and may be contributing to increased PHP-FPM load on the server. I am not sure if this is expected behavior or a known issue, but since it is logged very frequently, I thought it would be safer to report it.
If you need any additional information (plugin version, WordPress version, WooCommerce version, or context to reproduce), I will be happy to provide it.
Thank you for your work and for taking a look.
Best regards,
Hi jbstnshopping
Thank you for reaching out to our support team.
This is a known warning, and there is a fix for this warning, which is included in the next update, 1.9.2.
If you know how to add changes to the plugin files, you can go to filter-everything-pro/src/Entities/EntityManager.php on line 937 and instead of this line:
$is_rating = ($filter['view'] === 'rating' && $filter['e_name'] === 'product_visibility' ) ? true : false;
Use this one:
$is_rating = (isset($filter['view']) && $filter['view'] === 'rating' && $filter['e_name'] === 'product_visibility' ) ? true : false;
Or you can send the credentials to the wp-admin dashboard following this document so we can add it.
In terms of functionality, it is not causing any issues as long as it is only a warning. The only impact it may have is that, if any logging functionality is enabled, the warning could be recorded in the log file. As a result, the log file may increase in size. However, in most cases, debug modes are disabled on production sites to avoid potential slowdowns, as the default WordPress debug log functionality can affect performance.
Best Regards,
Victor
Thank you very much for your reply. I just changed that line in the plugin.
I cannot figure out how to add a widget to display all search results. For example, on https://www.lookatlights.com/ when I check a box for a result that has more than 5 results, only 5 appear.
I know the directions say to go to Appearance > Click Widgets, but I do not have a Widget option when I go to Appearance in my WordPress dashboard.
Hi fislerdata
Thank you for choosing Filter Everything PRO.
If you are referring to the posts per page, this should be configured either in the general WordPress settings, or if it is displayed via a template or page builder, within that tool’s settings.
However, please note that none of these settings is related to the plugin itself; they are outside of the plugin’s functionality and are not handled on the plugin side.
Best Regards,
Victor
Thank you – I found the option for the posts per page. Do you have a suggestion for finding the Filter Everything Pro widget? When I press the + icon, then go to the widgets section, there is not a Filter Everything Pro widget, nor does anything show when I search using the search box within the blocks section.
As far as we can see, you are using a block-based theme (Gutenberg).
There are no Gutenberg widgets available yet, but they will be added in future updates.
In the meantime, you can use shortcodes instead: https://filtereverything.pro/resources/shortcodes/
If you need widgets in your theme to make certain functionality work (sorting widget), you can add a widget area to your theme either via custom code or by using a plugin that allows you to add one.
Here is a custom code snippet example, which adds to your theme a widget area if it doesn’t support it by default:
function custom_theme_widgets_init() {
register_sidebar( array(
'name' => __( 'Custom Sidebar', 'textdomain' ),
'id' => 'custom-sidebar',
'description' => __( 'Add widgets here.', 'textdomain' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'custom_theme_widgets_init' );
Best Regards,
Victor
Hello Filter Everything team,
I’m setting up filters on WooCommerce archive / collection pages and I’d like guidance on the best supported way to achieve the following layout and behavior using Filter Everything.
What I’m trying to achieve
Row 1: Category filter only – displayed as label-style “pills” – horizontal layout – always visible
Row 2: All other filters (Visual Style, Type, Size, Gallery Sets, etc.) – displayed horizontally – appear only after a Category is selected – update dynamically based on the selected Category
The filters themselves are working correctly in terms of logic and URLs — I’m specifically looking for the intended architectural approach to control layout and progressive disclosure.
My questions
Is there a recommended way in Filter Everything to display one filter on its own row, with the remaining filters on a second row?
Should this be done using:
one filter set, or
multiple filter sets placed separately?
Is there a built-in option or pattern for making a labels list render horizontally for taxonomy filters like product categories?
If progressive disclosure (Category first → other filters second) is desired, what is the best way to configure that using parent filters or filter sets?
I want to implement this in a way that aligns with how Filter Everything is designed to be used, rather than relying on workarounds.
Thank you for your guidance.
Best regards, Charlie
Hi Charlie
Thank you for choosing Filter Everything PRO.
If you want to add styling where one filter spans the full width and another appears below it in a horizontally split column layout, custom CSS is required. You can place it in the Filters > Settings > Experimental > Custom CSS.
If you want to place one filter (for example, at the top of the page) and display all other filters vertically in the sidebar, you will need two filter sets on the same page. The filter widget has a horizontal layout option with the number of columns; in each column, there will be a separate filter, color, size, brand…
If you could send a link to an example of what you are trying to achieve, it would be easier for us to provide more accurate information.
Regarding filters appearing only after selecting certain filters: this is working as a global functionality for any filter term in a filter. If you have a category filter configured as the parent filter and all other filters set as its children, with the “hide until selected in parent” option enabled, the child filters will only be displayed after you select any term from the parent filter.
Best Regards,
Victor
Hi. URL prefixes are not being registered for new attributes after filter set #22. Attributes exist in WooCommerce, can be selected in filter sets, but don’t appear in Filters → Settings → URL Prefixes. Only Brand, Color, and Wireless Connectivity filters work — others don’t respond to clicks. Could you please advise what might be causing this and how to fix it?
Hi niebielistki
Thank you for choosing Filter Everything PRO.
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
Victor
Credentials sent via PM to fe_support as instructed.
Hi niebielistki
We have passed this to the development team, so they can check it.
Usually, this indicates that there is some corrupted data, so it may take some time to track which item is affected and why it happened, in order to implement a fix for the future.
If you can set up the staging site with such an issue, that would be even better.
Best Regards,
Victor
Hi Victor,
Thank you for escalating this to the development team. I’d like to provide more detailed information about the issue to help with diagnosis.
The Problem: After creating filter set #22, none of the new product attributes are registering in Filters → Settings → URL Prefixes, even though they are properly configured in WooCommerce.
What Works:
Filter sets #1-22 and their attributes function correctly Brand, Color, and Wireless Connectivity filters (from earlier sets) work perfectly New attributes ARE visible in WooCommerce → Products → Attributes New attributes CAN be selected when creating new filter sets New attributes have proper taxonomy assigned (pa_attribute-slug) What Doesn’t Work:
New attributes don’t appear in URL Prefixes list after adding them to filter sets Clicking “Update” on filter sets with new attributes doesn’t register them Filters with unregistered URL prefixes don’t respond to clicks on frontend The URL Prefixes list is “frozen” at 91 entries Current Status:
Total URL Prefixes registered: 91 Total filter sets: 25+ Plugin version: Filter Everything PRO (Premium/Unlimited) Many more attributes planned to be added Example of Affected Attributes: Recently added attributes like:
Dashboard Camera Resolution (pa_rozdzielczosc-kamera-kokpit) Viewing Angle (pa_kat-widzenia) Night Mode (pa_tryb-nocny) GPS (pa_gps) Motion Sensor (pa_czujnik-ruchu) Parking Mode (pa_tryb-parkingowy) These attributes exist in WooCommerce, are assigned to filter sets, but don’t register URL prefixes and don’t work as filters.
Tested Solutions (that didn’t work):
Clicking “Update” multiple times on filter sets Creating new filter sets with new attributes Deactivating/reactivating the plugin Clearing all caches Checking in incognito mode Questions:
Is there a hard limit of 91 URL prefixes, despite Premium/Unlimited license? Could there be database corruption after entry #91? Is there a specific database table I should check for anomalies? About Staging Environment: Currently, I don’t have a staging site set up. All changes are made directly on the production site (hifimedia.pl). I’m not a developer.
I have many more product attributes to add (dozens across multiple categories), so this is blocking significant site development. Any insights or workarounds would be greatly appreciated.
There are no physical limitations; you can add 40 or more filter sets.
This is a very rare case, and we do not know exactly how this occurs; it could be due to site transfer, aggressive caching, or other reasons. Unfortunately, we could not recreate the issue on our end despite multiple attempts. What we do know from the previous similar case is that after fully deleting all filters and filter sets, the system returned to normal. However, back then, we weren’t provided with the credentials to check the case.
Usually, we perform this kind of testing on staging sites to avoid any impact on the live site. This is why we asked if you could create a staging site with the same issue, so we can debug it there freely without worrying about any unexpected fatal errors.
Best Regards,
Victor
Hi Victor,
Thank you for your patience. After considering the options, I’ve decided to proceed with deleting and recreating the filters rather than setting up a staging site (I’m having technical difficulties with staging setup).
Before I proceed with deletion, I have a few important questions:
1. What exactly should I delete? - Only filter sets in Filter Everything Pro? - Also URL prefixes? - Should I keep the product attributes in WooCommerce (they’re assigned to products)?
2. What is the correct order of deletion? - Should I delete filter sets first, then check if new attributes register? - Or delete everything at once?
3. After deletion, will the URL structure remain the same? - This is critical for SEO – I don’t want to lose rankings - Will the same attributes create the same URL prefixes after recreation?
4. Is there an API or faster method to recreate filter sets? - I have 25+ filter sets to recreate - Each has multiple attributes and specific settings - Is there a way to bulk import or use API to speed up this process? - Or do I need to manually recreate each filter set through the admin panel?
5. Documentation request: - Before deletion, how can I best document my current setup? - Is there an export function I’m missing? - Or should I just screenshot everything?
I want to make sure I do this correctly the first time to avoid repeating this issue. I have documented all my current filter sets, but any guidance on the recreation process would be very helpful.
Thank you for your help!
Best regards, MiWii
Hi MiWii
Before deleting everything, could you please wait a bit so we can contact the development team and ask if they have finished checking the site?
This will allow us to at least gather some information, which could be helpful regarding this issue.
Best Regards,
Victor
Hi, sure
We have contacted the team, and they said you can delete it. However, they recommended making a backup just in case you want to revert to the old setup, so that state will be saved.
Regarding deletion, the best approach is to deactivate the plugin and delete it via the admin dashboard. This will remove all files and data associated with it, including the free version if it is installed on the site. After that, you can install a clean version of the plugin. This way, all previous data will be fully removed, and you will start fresh.
As for creating filters, everything should work the same as before. There is no need to follow any specific pattern, but we recommend making backups regularly. This way, even if something goes wrong, you can restore the previous state and have everything working again instead of starting from scratch.
Best Regards,
Victor
Hi Victor,
I followed your instructions and deleted the plugin, then reinstalled a clean version. Unfortunately, the problem persists with the exact same symptoms.
What I did: 1. Created a fresh backup using UpdraftPlus 2. Deactivated and deleted Filter Everything Pro completely 3. Installed a clean version of the plugin 4. Reactivated the license 5. Tested with the NEW attributes that weren’t working before
Current situation: - The 91 URL prefixes that were registered before still work perfectly - ALL new attributes refuse to register in Filters → Settings → URL Prefixes - These new attributes are properly configured in WooCommerce → Products → Attributes - They have correct taxonomy assigned (pa_attribute-slug) - I can select them when creating/editing filter sets - But they simply don’t appear in the URL Prefixes list - Filters using these unregistered attributes don’t respond to clicks on the frontend
This means: The reinstallation did not solve the issue. The problem is not with the plugin files themselves, but with something preventing NEW attributes from registering after the 91st entry.
What I did next: I restored the backup to return to the previous working state, since recreating all 25+ filter sets would be pointless if the core issue preventing new attribute registration isn’t resolved first.
The core problem remains: Something is blocking the registration of any new attributes in URL Prefixes after entry #91. It’s as if there’s a hard limit or corruption at that specific point in the database.
Questions: 1. Could there be a database table limit or corruption after 91 entries? 2. Are there specific database tables for Filter Everything that might need cleaning or repair? 3. Could you check if there’s something in the database preventing new registrations? 4. Is there a way to manually add URL prefixes to the database to bypass this block?
Since you have admin access to my site, would it be possible for your development team to examine the database tables directly to identify what’s blocking new registrations?
I’m willing to try any diagnostic steps you suggest, but I need to resolve this registration issue before recreating filter sets.
Thank you for your continued support.
Best regards
We can try to add it via the database manually. However, since we do not have FTP access, and if this causes a fatal error, please be cautious so you can revert the changes.
Also, please install the phpMyAdmin plugin so we can check the database.
Best Regards,
Victor
Hi Victor,
I have sent credentials data from https://codecanyon.net/user/fe_support
I have backup.
I have installed Query Monitor plugin also.
Please resolve our issue as soon as possible.
Thanks
Hi shinyrock1
We have added some changes to the PRO version of the plugin and enabled it. Can you please check if it is working without causing 100% CPU usage?
This is not a fix yet; it is only the testing stage. We need your confirmation that it is no longer affecting the CPU.
Best Regards,
Victor
ok
Please let us know the results so we can continue investigating the root cause of this issue and implement a proper fix.
Best Regards,
Victor
Please check last thing when we select “Apply” after select some option not working. https://shinyrockpolished.com/shop/ Please check it.
Thanks
Hi shinyrock1
We have checked the site, set up the filter, and cleared the cache as well, just to make sure everything is working properly on the shop page.
You have multiple product queries on that page, so we chose the one required for displaying our products there. Please check the functionality, and also let us know if the server is performing well without high CPU spikes.
Best Regards,
Victor
Hi,
CPU spikes works fine now.
Please can you check ? when we click on check box it takes some time.
Thanks
The speed is entirely dependent on your server’s capabilities. The site itself is quite slow. We turned off the plugin and tested the speed on the About Us page (which is the lightest page on the site): https://prnt.sc/9GGlhXpefq9t
Even on that page, it is taking almost 6 seconds to fully load.
The same thing happens during filtering; the server response is slow, which is why the process takes longer.
Best Regards,
Victor
Hi,
The plugin is very slow, i have disabled now. The provider says:
Thanks for reaching out to us. Unfortunately, such types of plugins are often very slow and only designed to work at a very small scale. This is a limitation of the plugin, but not an issue at on. I’d recommend reaching out to the plugin support to see what can be done to speed up its operation.
—Issue—
Wordpress/filter-everything-pro Module/Plugin 92.412 % (112034.342 ms)
SELECT wp_posts.ID FROM wp_posts LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) LEFT JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id AND wp_postmeta.meta_key = ‘_xxx_xxxxxxxxxx’ ) LEFT JOIN wp_postmeta AS mt1 ON ( wp_posts.ID = mt1.post_id ) LEFT JOIN wp_postmeta AS mt2 ON ( wp_posts.ID = mt2.post_id AND mt2.meta_key = ‘_xxx_xxxxxxxxxx’ ) LEFT JOIN wp_postmeta AS mt3 ON ( wp_posts.ID = mt3.post_id ) LEFT JOIN wp_posts AS p2 ON (wp_posts.post_parent = p… Database query 92.359 % (111969.3 ms)
SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) LEFT JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id AND wp_postmeta.meta_key = ‘_xxx_xxxxxxxxxx’ ) LEFT JOIN wp_postmeta AS mt1 ON ( wp_posts.ID = mt1.post_id ) INNER JOIN wp_postmeta istockstatus ON (wp_posts.ID = istockstatus.post_id) WHERE 1=1 AND istockstatus.meta_key = ‘_xxxxx_xxxxxx’ AND istockstatus.meta_value <> ’’ AND ( wp_posts.ID NOT… Database query 5.825 % (7062.193 ms)
Wordpress filter-everything-pro 112034342 92.412 % (112034.342 ms)
Thank you for your help.
Hi HKar
Thank you for choosing Filter Everything PRO.
Can you please provide information on the hardware configuration you currently have on your server?
Also, please send the credentials to the wp-admin dashboard following this document so we can check it. Perhaps there might be some issues related to compatibility with other plugins that are causing this slowdown.
Best Regards,
Victor
Hello I bought this plugin and it keeps saying the license is wrong. Yet its the only code I have?
Ok it appears its not the purchase code. My fault.
Hi chris80808
Just in case other users stumble across this comment and are looking for a solution, we’re going to leave the instructions here as well:
Please use incognito mode in your browser!
In order to set the License key for the Filter Everything PRO plugin, simply head to Filters -> Settings -> License and click the “Get your License Key” button.
It will take you to a new page where you have to log in with your Envato credentials (with an account where you have purchased the plugin) and obtain your License key.
This is the license key that is used for activation of the plugin.
Best Regards,
Victor
Hello, we’re seeing in our Google Analytics thousands of URLS that look similar to this /resources/content-series-christmas-perspectives-or-cornerstones-or-jonah-and-the-word-of-the-lord-or-jubilee-2018-spring-worldview-or-reclaiming-a-biblical-vision-of-social-justice-or-reclaiming-a-biblical-vision-of-the-family/
Where it appears that the “or” statements are being added to a URL instead of it dynamically changing the URL with parameters.
I can’t find any setting to address this.
Hi jcecile3
If you are referring to how to turn off filter permalinks so they work like GET parameters, you can add this PHP code snippet and update your filter set to have only GET parameters for the filters in the URL:
define( 'FLRT_PERMALINKS_ENABLED', false );
Best Regards,
Victor
Hi there,
We have a customer using Filter Everything PRO (purchased from his own account), and we need to export and import its settings from a staging site to the live site. I’ve read through the comments and noticed that a few months ago you mentioned this would be available in version 1.9.2, but the latest version is still 1.9.1.
Do you have a patch or an unreleased build we could test? This functionality is very important for us.
Hi Laborator
We’d love to help, but unfortunately, the development version of the plugin is not available for distribution. Please wait until the official 1.9.2 update is released.
We understand the importance of this, but there is no separate patch, as much of the plugin functionality has been modified to introduce new features that are interconnected in one way or another.
Best Regards,
Victor
URGENT: Issue with “OR” logic behavior – Multiple selections overriding results
Dear Filter Everything Support Team,
I am contacting you regarding a critical issue I am experiencing with Filter Everything Pro on my live website.
The Problem: When checking multiple options within a specific filter set, the plugin fails to aggregate the results. Instead of showing products from all selected categories, it only displays the products associated with the last option clicked.
Troubleshooting already done: I have confirmed the following settings:
The filter logic is explicitly set to “OR” (not “AND”).
All slugs are correctly configured.
I have cleared the cache to ensure it is not a caching issue.
Despite the “OR” setting, the frontend behaves as if it is overwriting the previous selection rather than adding to it. This is severely affecting our site’s usability.
Attachments: I have attached screenshots showing:
The backend settings (confirming the “OR” logic).
The frontend behavior when multiple filters are selected.
Could you please investigate this as a matter of urgency? Our store functionality is compromised, and we need a fix as soon as possible.
My Site Details:
Website URL: centrumpapir.hu
Plugin Version: 1.9.1
Thank you for your quick assistance.
Best regards, Kristof
Hi Kristof
This looks like some type of conflict on the site. This is not a typical case, like creating a price filter, where there is only one way to do it. It requires site checking, reviewing other plugins, filter settings, and so on. For cases like this, we need to examine the issue directly on the site to understand what might be causing it.
However, this service is only available for users with active support. If you want us to check it, please extend your support, and we will provide further instructions on how to share the credentials so we can investigate.
Best Regards,
Victor
Thanks, i tested it on a new blank site with only woo products and it turs out it is not compatible with the elementor loop grid. Is it possible to make it comaptible?
We have tested it on our back:
1) The filter set: https://prnt.sc/X18EbhA3oeRf
2) Elementor setup with the loop grid: https://prnt.sc/tHmsRTG_npmC
3) And the results on the front: https://prnt.sc/C9S-Pe5TwIjV
Working with selecting both terms and resulting in 4 products to appear in a sum. If we did something in our testing case, you can correct it so we can test it with the corrected information as well.
Best Regards,
Victor
Yes but did you create a shop archive template and there you put the loop grid? Because there was the only page where it was not working correctly. It is working on simple page. So can you try it like you create an archive template page for the shop page, and in the filter set you set up Common wordpress page and select shop page.
On the category page it is working, but not on the main shop page.
Basically the same:
1) Filter Set: https://prnt.sc/vC5YQmUnvdY-
2) Elementor setup: https://prnt.sc/P0yi3wxhOkDq and https://prnt.sc/9vGhJEBtIn-Y
3) Front result: https://prnt.sc/XaPdwG45312y
Best Regards,
Victor
Thank you. What did you choose in elementor loop grid on the Query settings menu? on 2/1 image
I found the correct setup: The And what to filter? you have to set to Search post list Products. So now i think its working
Hi bkris
Regarding what we have chosen in the “And what to filter” section, even though it has already been configured, we would like to add a documentation section from the Quick Start guide, maybe it would be helpful for others as well: https://filtereverything.pro/resources/quick-start/#set_the_wp_query
This section explains the “And what to filter” area.
Best Regards,
Victor
Hi, i am using custom snippet for edit the H1 tag of every category. Is possible when is added custom H1 to use it into the H1 formulas and meta title?
Hi WebVisuality
Please check this page, it can be helpful: https://filtereverything.pro/resources/all-about-seo/
Best Regards,
Victor
Hello Today I saw the status Locked for the plugin, and when I try to enter the license key, I see an error This license key already used for two sites.
But I only use the plugin on the main site and stage, what’s the problem?
Hi wpzzz
Thank you for reaching out to our support team.
The problem was that the license was activated on two sites. We have deactivated the license across all of the sites. Please activate it on the required ones.
Best Regards,
Victor
Hello, a few days back. I comment here about multiple URL generation on my website ( visaboards.com ) with your recommendation. I stopped them through .htaccess. After implementing, none of filteration is working on my website.
If I remove code from htaccess the URL process starts again. As a result, it uses my hosting 400% of CPU, and if I keep the code, CPU drops to 0%, and the filtering stops. Now, how to handle this sitataution. My website is in the ranking stage, and this bug is causing a problem for me.
Is there any support email where I can access so you can have a look (If needed).
Here is httaccess code
RewriteEngine On
#
- BLOCK INFINITE FILTER URLS (PERMANENT – SEO) ############################################### <IfModule mod_rewrite.c>
- Restrict to known filter directories (extra safety) RewriteCond %{REQUEST_URI} ^/(jobs|countries|scholarships|events)/ [NC]
- Filter Everything Pro patterns RewriteCond %{REQUEST_URI} (location-|instutioncountry-|discipline-|academic_programs-|functional_area-|job_sector-|job_type-|international_applicant-|experience_required-|qualifications-|region-|languages-|second_language-|passport_color-|scholarship-countries-|scholarship_type-|event-countries-) [NC]
- 410 Gone = fastest Google drop RewriteRule .* – [G,L]
- END FILTER URL BLOCK ###############################################
- (OPTIONAL – can remove)
- Block if Referer matches current URL (rarely useful) RewriteCond {HTTP_REFERER} ^https?:// {HTTP_HOST}%{REQUEST_URI}$ [NC] RewriteRule ^ – [F,L]
- (OPTIONAL – can remove)
- Block Chrome 112.0.0.0 bot user-agent RewriteCond %{HTTP_USER_AGENT} “Chrome/112\.0\.0\.0” [NC] RewriteRule ^ – [F,L]
- BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
- END WordPress
Hi uzair35
Unfortunately, we do not write any custom rules, as this is out of the scope of our support policy.
In your case, just by looking at the rules, we can tell that they are blocking everyone instead of targeting only bots, scrapers, crawlers, etc. You may want to modify them so they apply only to those that are constantly crawling your site, causing harm.
Also, if you haven’t tried it yet, you can add the following PHP code snippet and then click the Update button in the filter set:
define( 'FLRT_PERMALINKS_ENABLED', false );
It will fully turn off the permalink manager for filters, and the filters will use only GET parameters, which should not be crawled by bots.
Best Regards,
Victor
Thank you so much. After impliement your this solution, my filteration working. Iam monitering my stats of hosting. If anything happens, I will get back to you.
Hi uzair35
After monitoring, if you can, it would be nice if you could share whether the issue has disappeared or not.
This would be quite valuable information.
Best Regards,
Victor
Hello again, yes. Thank you so much. Your solution fixed the problem.
Filteration is working perfectly.
Have a perfect day. Cheers Bro
For your information, my resources for hosting are normal, too.
From Robort.txt
i set
Disallow: /*?
Which fixed my indexing & SEO issues
Thank you for the update, that’s amazing news!
Best Regards,
Victor
Hi,
I hope you are well.
The filters titled ‘max weight per person’ does not seem to be changing sort order when I configure the terms order in the productsa configuration or the filter as it should.
An example can be seen below.
https://dev2025.dreambeds.co.za/product-category/stock/beds-mattresses/As out plugin has some custom work, I am not sure if this will affect it , and turning off filters turns off the filters.
Could you please advise, or check, as I am uncertain where the challenge would be and thought I would first check here witho you, as its one of the few spots I cannot manually confrim from my end.
Thank you very much for your assistance.
Regards, Tarquin
Hi Tarquin
We have configured it to be displayed correctly. Please check if it is working properly.
We went to the filter set, navigated to the required filter, and selected menu order 123. It is displayed exactly as you ordered it in the attribute values. This option is available only for WooCommerce attribute values.
Best Regards,
Victor
Hi, thank you very much, I do see the max weight filter showing in the set order now thank you
We are glad to hear that the issue was resolved.
Best Regards,
Victor
Hi,
I’m using the Divi theme and unfortunately the plugin does not work for my use case. I purchased it to style and control the blog overview page with Divi, but it turns out this isn’t possible and I’m not able to achieve the intended result for my website.
Because of this, the plugin doesn’t meet my needs and I won’t be able to use it as planned. Would it be possible to receive a refund?
Thank you for your time and support.
Kind regards,
Jasper (thepartypackage.nl)
Hi Jasper
Thank you for choosing Filter Everything PRO.
We are sorry to hear that the plugin did not meet your expectations.
Could you please provide more detailed information? Are you referring to full implementation with the Divi Builder so it can be styled directly like the built-in Divi widgets? Or, how exactly were you planning to style it? This information would greatly help us improve the plugin.
In general, a refund is possible by submitting a form through the account where the plugin was purchased and waiting for a response. Please note that the support team does not handle refunds. Furthermore, we have no control over the refund team and cannot speed up the process or influence it in any way.
Best Regards,
Victor
Hi,
I created filter sets for every product category separately.
On desktop, everything is fine. On mobile, the off-canvas filter sidebar is working only on one category: https://sape.hr/product-category/psi/. All other categories show an empty off-canvas filter sidebar.
I am using the WoodMart theme, and the sidebar is configured to be open on desktop and off-canvas for mobile.
I’m getting crazy here. 
Thanks.
Hi marijansokacic
Thank you for choosing Filter Everything PRO.
Please send the credentials to the wp-admin dashboard following this document so we can check it.
Also, please provide the link to the exact category page where the filters aren’t working on mobile, so we can test it directly.
Best Regards,
Victor