8952 comments found.
I write to you yesterday, so waiting for response, about search. Question about search, because – filter search not good sorting by relevance, but when I turn WP search – it works good, but on search page – filters not showing.
Hi ars42
Thank you for reaching out to our support team.
The “srch” is used for the searching filter, for example, like on this page: https://demo.filtereverything.pro/search-and-filter/?srch=Apple
This is not a global search; it works the same way as a simple filter, for example, when you choose a filter term like “red” for a color on your page.
To display filters on the search page from the default WordPress search ( which for products is usually ?s=text_to_search&post_type=product ), you need to create a filter set and place it on Common WordPress pages + Search page.
Please note that our support team is currently on holiday vacation until January 8, 2026. However, we will check in periodically (every 2–3 days) to provide responses where possible.
Thank you for your understanding, and we wish you Happy Holidays!
Best Regards,
Victor
Can you explain – how to do it?
“To display filters on the search page from the default WordPress search ( which for products is usually ?s=text_to_search&post_type=product ), you need to create a filter set and place it on Common WordPress pages + Search page.”
Because if we try to use standard WP search (not “srch”, but “s”), than searching working good – but filter widget not showing on searching page, only on catalog (shop) page.
we done it – “To display filters on the search page from the default WordPress search ( which for products is usually ?s=text_to_search&post_type=product ), you need to create a filter set and place it on Common WordPress pages + Search page.” neither filter widget not showing. But as I saw via code (dev tool) – widget exist, but not showing parameters.
Hi ars42
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 search page you are referring to where the filters do not display, so we can test it on that page.
Best Regards,
Victor
Sent you in DM
Already sent all information, waiting for your response, thanks!
Please, do not share our link to website – here in comments. Better to answer on my email, or answer here without links.
Hi ars42
We have checked the site, and the issue is with the search plugin, which uses its own search algorithms that may not be compatible with the filtering. Try disabling the Relevanssi search plugin, clearing the cache, and updating the filter set on the search page, then check if it is working.
Since you have a live site, we recommend testing everything on a staging site first, and only after you confirm it works, apply the changes to the live site. Your PM is closed to us, so we cannot send you a message via it.
You can send us your email via PM, and we will provide the answer there if that is more suitable.
Best Regards,
Victor
Yes, we did it, and filter showing on searching page.
But what we can do with relevance of searching? is it in your side? or how we can improve sorting?
our dev say that: “In fact, the search query displays posts that are rendered by the filter everything plugin
Although this may also be due to pagination”
Hi ars42
Since you already have a sorting widget on the search page where you can choose sorting options, selecting any of them (for example, ?orderby=relevance&paged=1&s=vtx&post_type=product ) seems to work correctly.
However, we cannot say for sure which exact parameters are used for relevance ordering. If relevance is based on a custom field (such as sales numbers or something similar), you can also use our own sorting widget: https://filtereverything.pro/resources/sorting-widget/ but after searching, you need to choose the sorting option.If you are referring to sorting products on the page in the pre-load state (before anything appears on the page) solely by modifying the query, this is not handled on the plugin side, as the plugin does not do that.
As an alternative, you can add the sorting widget to the page (you already have one), select the required sorting option, and use that GET parameter to apply the same sorting automatically during searching. This will result in a URL very similar to the one mentioned at the beginning of this message.
Best Regards,
Victor
We would appreciate your assistance or direction on how to proceed with this implementation. Please let us know if you need any additional details from our side
Hi juhishah
Thank you for reaching out to our support team.
By default, it uses WordPress search algorithms. To extend it, you need to apply custom code with specified custom fields. Please check this page for more information: https://filtereverything.pro/resources/search-filter-add-remove-restrict/
Best Regards,
Victor
We are using Filter Everything Pro on a WooCommerce website and followed your official documentation from this link:
https://filtereverything.pro/resources/search-filter-add-remove-restrict/Our requirement is to search products by custom fields:
HS Code (hs_code)
CAS No (cas_no)
These custom fields are created in the WordPress admin panel and saved as post meta for products (please see screenshots).
Issue Description
We created a Search filter in Filter Everything and tried to extend it using custom PHP code so that the search field also checks HS Code and CAS No.
However, filtering does not work when searching using HS Code or CAS No. Only product name / default search works. add_action(‘wpc_filtered_query_end’, ‘fe_custom_meta_search’, 10, 2); function fe_custom_meta_search( $wp_query, $filters ) { }
if ( isset($_GET['srch']) && $wp_query->is_main_query() ) {
}
$search_term = sanitize_text_field( $_GET['srch'] );
$meta_query = $wp_query->get('meta_query', []);
$meta_query[] = [
'relation' => 'OR',
[
'key' => 'hs_code',
'value' => $search_term,
'compare' => 'LIKE',
],
[
'key' => 'cas_no',
'value' => $search_term,
'compare' => 'LIKE',
],
];
$wp_query->set('meta_query', $meta_query);
Custom fields defined in admin panel
https://prnt.sc/_ST__R4J7khh
HS Code / CAS No values saved in product
https://prnt.sc/5OoxWd7Xw7fE
Search popup where filtering should work
https://prnt.sc/Vl1pkbhS4vEj
please help me and Suggestion
Looking forward to your guidance.
Thank you.
Hello, we are waiting for your response.
Hi juhishah
We’d love to help, but unfortunately, we do not debug or provide custom code for extending the plugin beyond its current functionality, as this is outside the scope of the CodeCanyon support policy: https://prnt.sc/bBkDIrbjhPei
As a support team, we can provide general information, such as the availability of hooks to modify this functionality.
If you encounter difficulties implementing modifications to the search algorithm, please contact your site developer and share the relevant documentation page about the search functionality. This will allow them to write the required modified logic, either based on the examples provided in the documentation (which is highly recommended) or using their own approach.
The examples in the documentation are a crucial reference. It is important to carefully examine them and follow the same approach in your custom code, as missing even a small but essential part can lead to issues.
Especially parts like those ones:
if( $wp_query->get('flrt_query_hash') || $wp_query->get('flrt_query_clone') ){
if ( $wp_query->get('wc_query') === 'product_query' || $wp_query->get('post_type') === 'product' /* || $wp_query->get('post_type') === 'product_variation' */ ) {
global $wpdb;
The example already uses a hook to include product SKUs in the search, since SKU is a custom field and is not included by default.
You may also use AI tools by providing the full documentation and requirements to help generate custom code. This approach can be helpful, but you should still ensure you understand the code being implemented to avoid negatively affecting the site’s functionality.
Best Regards,
Victor
We are using pro plugin and trying to put free input field to search on our custom post type using this setting:https://prnt.sc/dPhTjzPf5KP6
However, it is only getting result if search term match with post title. What we need it should get result from entire post data including post title, post taxonomy, post tags, post custom field as I have configured multiple fields on post detail.
Can you please help me how can I configure search this way?
Hi juhishah
Unfortunately, the instructions we provided earlier in this comment thread are still the same. To extend the search capabilities that are based on the default WordPress search algorithms, you need to write custom code to include the required entities in the required post types and count them during the search.
We can only recommend contacting the site developer or a freelance developer who can write this custom code for you in order to fit your needs.
Best Regards,
Victor
FILTER CHIPS WITH TITLE
When placing widget for chips showing selected filters it shows only filter value. Is it possible to show for some filters also a title?
Because not all filters are self-explanatory. For instance, I have filter “Edition” that contains various numbers. Or for instance example from your demo page:
https://demo.filtereverything.pro/example/dropdowns/size-m/In url it is clear as selection is presented as key-value pair (size-m), but in selection chips it’s just a letter “M”. If you manage multiple filters that are not that self-explanatory – it becomes difficult.
Hi web-maverick
Thank you for reaching out to our support team.
You can modify the chips term name for an exact filter using custom code with the hook ‘wpc_chips_term_name’.
The hook:apply_filters( 'wpc_chips_term_name', $term->name, $term, $filter )
Please note that generally, there is no support for accounts whose support period has expired following the support policy.
If you have any further requests, we can help you once we have addressed all requests from accounts with valid support periods. Please note that this process may take some time, possibly days or weeks.
If you want to receive it faster, please extend the support period. We will prioritize processing the request for supported accounts.
Best Regards,
Victor
Hello,
I am using Filter Everything PRO with WooCommerce and I need clarification about using filters across two different pages.
My setup
The Shop page is the standard WooCommerce shop archive and already contains a Filter Everything filter set that works correctly.
I have a product attribute Brands (pa_marques).
I created Page A (a normal WordPress page, no product loop) that should display only a list of brands.
When a visitor clicks a brand on Page A, the visitor should be redirected to the Shop page, where the products are filtered by that brand.
Current behavior
Clicking a brand on Page A generates URLs like: /testmerk/brand-coca-cola/
The user stays on Page A.
The Shop page filter is not applied.
SEO Rules do not redirect to the Shop page.
Page A has no product loop, only brand links.
My questions
Is it officially supported to:
show filters (or brand terms) on Page A
but apply filtering on a different page (the Shop page)?
If yes:
Which feature should be used for this? (Alternative page, SEO Rules, or another setting?)
Does Page A need a product loop for this to work?
If no:
Can you confirm that filters must always be displayed on the same page where products are queried?
Thank you for your clarification.
Best regards, Hanne
Hi Hanne
Thank you for reaching out to our support team.
By the description, it sounds like you are looking for a redirection filter. Please check this page with instructions: https://filtereverything.pro/resources/typical-problems/#redirection_filter_instruction
Please note that generally, there is no support for accounts whose support period has expired following the support policy.
If you have any further requests, we can help you once we have addressed all requests from accounts with valid support periods. Please note that this process may take some time, possibly days or weeks.
If you want to receive it faster, please extend the support period. We will prioritize processing the request for supported accounts.
Best Regards,
Victor
I have the Filter Everything Pro version and have been successful in adding a filter to a few pages (one an Avada posts page and another custom post page). However, I went through the same process to add a filter to my site’s FAQs page created with the Avada FAQs page, and it is not showing up and is providing the message: “There are no filters in the Filter Set yet. Please add them to the Filter Set related to this page.”
I confirmed the filter is set to filter the FAQs.
Can I get some help?
Hi wstiner1
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 want the filters to appear and filter your posts.
Best Regards,
Victor
We’re using filter everything PRO and trying to create some SEO rules. These rules are working and pulling through to the front end with an index, follow tag, but it looks like these pages aren’t internally linked to from the category page in a way Google can crawl, so aren’t being indexed. Is there a way we can either create a sitemap of these new SEO rules (we’re currently using RankMath) or another way we can tell Google these pages exist so they’re able to be indexed? I would be interested in knowing how others have set this up so these URLs can be properly indexed if you have that information.
Hi bofiracing
Thank you for reaching out to our support team.
In general, Google should pick up and index filtered pages with the created SEO rules without any issues. Usually, we receive more requests about how to disable the filtered pages from indexing.
Regarding the sitemap XML functionality, this will be introduced in version 1.9.2. Previously, it was mentioned that it should be released by the end of this month, but it will most likely be postponed. A lot of additional features were added, and many improvements are also planned for the free version. Since these are connected in one way or another, the development took much more time than initially expected. What was planned as a regular update gradually expanded with new features and core improvements, making the process longer.
Best Regards,
Victor
Hi,
I am reporting a critical performance issue that is causing server crashes (OOM-Killer) on a WooCommerce store with approximately 20,000 variations.
After a detailed server audit, we identified that the filtering process generates massive transient records in the database. These records cause PHP-FPM processes to consume excessive memory (50MB–100MB+ per process), instantly exhausting our server’s 8GB RAM during traffic spikes.
Technical Diagnosis:
1. The “Cache Bloat” (Database & RAM bottleneck) We found specific transient keys in wp_options that are abnormally large (approx. 3MB each in serialized string format). When PHP unserializes these arrays, they expand significantly in memory.
Here are the specific keys identified as the root cause:
_transient_wpc_terms_post_meta_num__price (Size: ~3.01 MB)
_transient_wpc_terms_post_meta_num__price_product_variation (Size: ~3.01 MB)
_transient_wpc_posts_variations (Size: ~1.97 MB)
transient_wpc_variations_attribute_pa[attribute_name] (Size: ~1.76 MB)
2. Redis Failure We use Redis Object Cache. These keys are so large that they trigger connection failures (RedisException: read error on connection), forcing the server to fall back to SQL, which further increases the load (Load Average spiked to 107.0).
Is there a way to optimize how the plugin handles/indexes data for variable products? Storing such massive arrays in a single transient is not scalable for stores with this number of variations. Can we disable this specific caching mechanism or force the plugin to fetch data dynamically/in chunks?
We need a solution to prevent these 3MB+ transients from being generated, as they are effectively killing the server.
Hi wojtek45
Thank you for reaching out to our support team.
We’ll pass it to the development team so they can check it.
Additionally, if something needs to be checked on the site as well, could you please send the credentials to the wp-admin dashboard following this document.
This will help us understand what exactly generated such a large amount of data.
Best Regards,
Victor
Hi,
I’m not able to see the Filters in our WordPress instance with the Hello Theme and Elementor.
Request a refund of the purchase. Thanks
Hi SmithDasari_VDM
Thank you for choosing Filter Everything PRO.
We are sorry to hear that you have encountered complications with the plugin setup. We have tested it with the Elementor theme and Elementor as well, so this is most likely just a configuration issue.
Can you please send the credentials to the wp-admin dashboard following this document. So that we can set up the example for you, please attach the exact page link where you are trying to display the files, and we will display it there.
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’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